0

我在我的 aspx 页面中使用下面的页面方法。Page 方法返回超过 1000 行。但在成功结果警报中仅返回“[object][Object]”字符串。我怎样才能得到返回字符串。

 function getName()
 {
    PageMethods.getAdCodeInfo(onSuccess(),onError());
 }

 function onSuccess(result)
 {
    alert(result);//Result Returns more than 1000 lines string
 }

 function onError(error)
 {
    alert("error "+error);
 }
4

1 回答 1

0
 function onSuccess(result)
 {
    if(result && result.length>0){
        for(var i=0;i<result.length;i++){
             alert(result[i].prop); // prop is the property what you want to alert.
        }
    }
 }
于 2013-09-17T09:41:06.323 回答