$getJson
为什么设置数据在通话中不起作用。WTF 变量未在getJson
调用中设置。另外,另一个问题是为什么$(this).html()
不能设置里面getJson
调用。我在全局范围内定义了 wtf 变量,但我没有从getJson
函数中获取值,我想知道为什么数据无法访问。这是通过ajax
函数 和解决的async: seto to false
。我有我的解释,但我想要你的解释,所以提前谢谢。
<script type="text/javascript">
$(function () { $('a[id=talentNaslov]').before(function () {
var id = $(this).html();
var data=null;
$.getJSON("url", { id: id },function (talentNaziv) {
data=talentNaziv;
// data variable is not set still null and also $(this) is not set when i use it//
});
$(this).html(data);
});
});
</script>