// 구독 취소 $("#btn-subscribe").click(function () { let email = $("#email").val(); if (email == '') { alert('이 이메일은 필수입니다.'); return false } $.ajax({ type: 'post', url: 'https://system.neuvition.cn/api/customer/en', data: { company: 'subscribe customer', email: email, json: jsonStr, message: 'subscribe message', }, cache: false, dataType: 'json', success: function (result) { alert('구독에 성공했습니다!'); }, error: function (data) { console.log("err"); } }); console.log(email) })