我在jquery中使用$ .ajax函数。
我写了以下代码:
<script>
$(document).ready(function() {
var id =%%GLOBAL_ProductId%%;
var AllData="" ;
$.ajax({
url: "http://xtremeinspection.com/new2you4kids/app/android/get_product_size.php?productID=48",
dataType: "jsonp",
type: "POST",
async: false,
cache: true,
contentType: "application/json; charset=utf-8",
success: (function(data) {
AllData = html.fromhtml(data.d);
$("#home%%GLOBAL_ProductId%%").html(AllData);
})
});
});
</script>
我收到错误像这样:SyntaxError: 标识符在数字文字后立即开始
你能不能指出我为什么会遇到这种错误?