以下JavaScript方法在本地计算机上运行良好,但在将其上传到GoDaddy服务器后返回错误:
//add to saved profiles
function addFav() {
/* opens a dialog */
$("#addFavourite").dialog("open");
/* error occurs in the next line */
var profileName = document.getElementById("MainContent_lblMainName").textContent;
SendMessageWebService.saveProfile(profileName);
};
我正在使用Google Chrome浏览器进行调试
答案 0 :(得分:0)
尝试使用标签的innerHTML属性。你引用了正确的javascript文件吗?如果以编程方式引用lblMainName会更好:
var profileName = document.getElementById("<%= lblMainName.ClientID %>").InnerHTML;