function s()
{
alert("hello");
$email = document.getElementById("inp_subscribe").value;
alert($email);
$.get("subscribe.php",{inp_subscribe: $email },"");
alert($email);
}
请帮助我了解如何使$.get()
功能正常工作。
答案 0 :(得分:1)
试试这段代码......
new predicate<T>(func<T, bool>)
function s() {
alert("hello");
var $email = document.getElementById("inp_subscribe").value;
alert($email);
$.get("subscribe.php",{inp_subscribe: $email },"");
alert($email);
}