2015-10-31 163 views
-1
function s() 
{ 
    alert("hello"); 
    $email = document.getElementById("inp_subscribe").value; 
    alert($email); 
    $.get("subscribe.php",{inp_subscribe: $email },""); 
    alert($email); 
} 

請幫我學習如何使$.get()函數正常工作。

+3

你假設_jQuery_?您是否在引用此代碼之前包含了對您所設想的框架的引用? –

+1

您需要包含jQuery庫 - 請閱讀http://www.w3schools.com/jquery/jquery_get_started.asp – xuanji

回答

1

試試這個代碼...

function s() { 
 
    alert("hello"); 
 
    var $email = document.getElementById("inp_subscribe").value; 
 
    alert($email); 
 
    $.get("subscribe.php",{inp_subscribe: $email },""); 
 
    alert($email); 
 
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> 
 

 
<label for="inp_subscribe">Email:</label> 
 
<input name="inp_subscribe" id="inp_subscribe" type="email"/> 
 
<button onclick="s();">Submit</button>

相關問題