我正在使用下面的代碼,但我不想在頁面中存在#my_id元素,我只是想運行.load(),像這樣$ .load(),等等。我希望我的代碼解釋了什麼是我想要做的......jQuery .load(),我不想將響應綁定到選擇器
$("#my_id").load('/code.php', {'code': code}, function(response, status, xhr){
if(response == "test"){
$(this).after(' <img src="/accepted.png" alt="accepted" title="accepted"/>');
}else{
$(this).after(' <img src="/not_accepted.png" alt="not accepted" title="not accepted"/>');
//alert("You typed the following: " + voucher_code);
}
任何想法? 謝謝。
嗨,大衛。是的。但它似乎沒有工作...沒有ajax請求發送,並沒有收到迴應... :( – 2012-03-27 12:34:48
我認爲$ .get可能是我後。 – 2012-03-27 12:41:40
@ i-CONICA:通常它應該工作。[Example](http://jsfiddle.net/jUVj7/)如果有其他的錯誤,我們需要更多的信息來幫助你。瀏覽器檢測工具應該能夠讓你監控外發請求,看看會發生什麼'$ .get'和'$ .post'是一樣的,但是有不同的HTTP動詞。 – 2012-03-27 12:45:45