0

我正在使用 LoadControl 在 .aspx 页面中动态加载用户控件 .ascx 文件。在 .ascx 页面中,我正在进行 ajax 调用并调用 .aspx 页面。示例代码如下

$(document).ready(function () {

("#TestDiv").load("TestPage.aspx", function (response, status, xhr) {

    if (status == "error")
    {
         //some code
    }
    else
    {
         //some code
    }
}

});

在 TestPage.aspx 中,我想在其页面加载时调用 1 个 javascript 代码。我在 TestPage.aspx 的 document.ready 函数中编写了 javscript alert 下面是示例代码

$(document).ready(function () {
    alert("Hi");
});

但是这个 javscript 警报没有被调用。请让我知道 TestPage.aspx 页面中的这个 javascript 代码有什么问题。

任何帮助将不胜感激。提前致谢。

问候, 拉胡尔·拉蒂

4

1 回答 1

0

您有语法错误,缺少 ); 您还缺少 $ before ("#TestDiv")

$(document).ready(function () {
$("#TestDiv").load("TestPage.aspx", function (response, status, xhr) {

    if (status == "error")
    {
         //some code
    }
    else
    {
         //some code
    }
});
});
于 2012-11-23T17:52:06.977 回答