以下 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 浏览器进行调试