我使用jQuery.load
将本地HTML页面加载到div中,并收到以下错误:
Unexpected token ILLEGAL SyntaxError
我的代码如下:
var url_string = "x=bob&y=jan&dbconnection="+encodeURIComponent(DBCONNECTION_STRING);
$('#SOMEDIV').load("page.asp?"+url_string);
我在url_string上做了一个console.log,没有多余的空格,因为encodeURIComponent会抓住它。