jquery"object expected"해결 방법 제시

1452 단어 jqueryobjectexpected
1."object expected"오류:jquery 라 이브 러 리 의 인용 방식 이 잘못 되 어 발생 한 것 입 니 다.잘못된 인용 방식:정확 한 인용 방식:은 js 스 크 립 트 를 포함 하 는 문법 적 표기 법 이 다음 과 같 습 니 다(표준 을 쓰 지 않 아 도"object expected"를 잘못 보고 합 니 다):2.Jquery 는 vs 2005 와 vs 2008 에서 의 문법 도 크게 다르다(응용 할 때 주의해 야 한다).예 를 들 어
 
//
$(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 。
}
});
});
});

좋은 웹페이지 즐겨찾기