Maison >interface Web >js tutoriel >jquery提示 "object expected"的解决方法_jquery

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

WBOY
WBOYoriginal
2016-05-16 18:39:361503parcourir

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回调函数中获取返回值的方式。
}
});
});
});
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn