jQuery(document).ready(function () {
$("div").bind('click', $.proxy(function (event) {
var id = $(event.target).attr('id');
var go = jQuery.isNumeric(id);
if (go) {
$.post("favswrite.php", {
id: id
});
alert('Formül '+id+' favorilerinize eklendi !');
}
}, this));
});
此代码是发布数据 3 次。哪里错了,循环呢?我想要发布数据 1 次。