在 Chrome 上运行我收到以下错误消息:
未捕获的 SyntaxError:意外的令牌
这是我的代码中负责请求的部分:
function wetter() {
$.ajax({
'Accept': 'application/json',
type: 'GET',
url: '[here comes the url',
dataType: 'jsonp',
success: function (data) {
//content
}
});
};