如果你想在页面上捕获一个 onclick 事件并从中发送一个 ajax 请求,你会怎么做呢?
问问题
1002 次
1 回答
2
jQuery让这一切变得简单!
HTML
<div>Here's the <span class="myLink">word</span></div>
JavaScript
$(document).ready(function() {
/*onclick event*/
$(".myLink").click(function() {
/* The AJAX call*/
$.post('http://myurl.com/',{ 'my' : 'data'},function(response) {
//do something with the result
});
});
});
于 2013-06-12T15:23:31.993 回答