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回调函数中获取返回值的方式。
}
});
});
});