Heim  >  Artikel  >  Web-Frontend  >  jquery提示 "object expected"的解决方法_jquery

jquery提示 "object expected"的解决方法_jquery

WBOY
WBOYOriginal
2016-05-16 18:39:361470Durchsuche

1. "object expected"错误: 是jquery库的引用方式不对引起的。
错误的引用方式:
正确的引用方式:
另外包含js脚本的语法写法如下(书写不标准也会报错"object expected"):

2.Jquery在vs2005和vs2008中的语法也有很大不同(应用时要稍加注意),比如:

复制代码 代码如下:

//无参数调用
$(document).ready(function() {
$('#btn1').click(function() {
$.ajax({
type: "POST",
contentType: "application/json",
url: "MyWebService2.asmx/HelloWorld",
data: "{}",
dataType: 'json',
success: function(result) {
$('#dictionary').append(result); ****** 注释:vs2005回调函数中获取返回值的方式。
}
});
});
});

//无参数调用
$(document).ready(function() {
$('#btn1').click(function() {
$.ajax({
type: "POST",
contentType: "application/json",
url: "WebService1.asmx/HelloWorld",
data: "{}",
dataType: 'json',
success: function(result) {
$('#dictionary').append(result.d); ****** 注释:vs2008回调函数中获取返回值的方式。
}
});
});
});
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn