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:識別子は数値リテラルの直後に開始します
このタイプのエラーが発生する理由を教えてください。