我正在尝试创建一个 Ajax 函数调用,其中q
将动态定义参数,并且该$.get
函数将根据 Ajax 调用返回的数据返回true
或返回。false
<a href="any.php" class="idd" id="1">add score</a>
<a href="any.php" class="idd" id="2">add score</a>
<a href="any.php" class="idd" id="3">add score</a>
$(".idd").click(function(event) {
window.Eid=event.target.id;
//alert(window.Eid);
});
$.get("getDetails.php",
{ q: window.Eid }, // I want this variable dynamic
function(m) {
$(".idd").click(function() {
//var Eid=event.target.id;
alert(m);
if(m>0) {
return false;
} else {
return true;
}
});
});