-1
function s()
{
alert("hello");
$email = document.getElementById("inp_subscribe").value;
alert($email);
$.get("subscribe.php",{inp_subscribe: $email },"");
alert($email);
}
請幫我學習如何使$.get()
函數正常工作。
你假設_jQuery_?您是否在引用此代碼之前包含了對您所設想的框架的引用? –
您需要包含jQuery庫 - 請閱讀http://www.w3schools.com/jquery/jquery_get_started.asp – xuanji