访问<选择>在 MasterPage 的子 iFrame 中(在同一域中)

发布于 2024-11-05 22:55:08 字数 1099 浏览 0 评论 0原文

在我的 ASP.NET 应用程序中,我使用 MasterPage 和 iFrame 作为应用程序的内容部分(iFrame 中还有一个侧边栏和菜单栏)。

我的目标是插入一个 jQuery/javascript 函数来拦截哪个

MasterPage 和 iFrame 都是同一应用程序的一部分,并且 iFrame 不打开外部页面,而是打开应用程序的 .aspx 页面,因此是相同的域。

但无论如何,“焦点”事件似乎不起作用,因为内部代码没有执行。

这是函数:

$("#tabFrame").load(function() {
    $("#tabFrame").contents().find("SELECT").focus(function() {
        alert('focus on');
    }).change(function() {
        $.ajax({
            type: "POST",
            url: "../WebService/registerChanges",
            dataType: "json",
            contentType: "application/json; charset=utf-8",
            data: JSON.stringify({
                controlName: dropDownId
            }),
            success: function(data) {
                var result = JSON.parse(data.d);
                if (result.Success) {
                    alert("Successfully found.");
                }
            }
        })
    })
})

由于函数本身是正确的,我猜想尝试从外部访问内部 IFrame 时存在一些问题,但我无法弄清楚是哪些问题。

有什么建议吗? (我使用IE8作为浏览器)

谢谢。

in my ASP.NET application I use a MasterPage and an iFrame for the content part of the application (there is also a sidebar and menubar out of the iFrame).

My goal is to insert a jQuery/javascript function to intercept which <select> element gets the focus within the child iFrame.

Both MasterPage and iFrame are part of the same application and the iFrame does not open external pages, but .aspx pages of the application, hence same domain.

But anyway the "focus" event seems to be not working, since the inner code is not executed.

Here is the function:

$("#tabFrame").load(function() {
    $("#tabFrame").contents().find("SELECT").focus(function() {
        alert('focus on');
    }).change(function() {
        $.ajax({
            type: "POST",
            url: "../WebService/registerChanges",
            dataType: "json",
            contentType: "application/json; charset=utf-8",
            data: JSON.stringify({
                controlName: dropDownId
            }),
            success: function(data) {
                var result = JSON.parse(data.d);
                if (result.Success) {
                    alert("Successfully found.");
                }
            }
        })
    })
})

Since the function itself is correct, I guess there are some issues trying to access the inner IFrame from outside, but I cannot figure out which ones.

Any suggestions? (I use IE8 as browser)

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

桜花祭 2024-11-12 22:55:08

现在它可以工作了:

  • 最初问题是由于 IFrame 造成的,因为我尝试在加载它之前访问它。使用 $("#tabFrame").load() 函数,它在正确的时间被访问。

  • 之后,缺少 jQuery 引用 (JSON) 就是问题的根源:(
    但退一步,简单地放置警报而不是 WebService 调用,我可以解决这个问题。

上面的代码是工作版本。

Now it works:

  • Initially problems were due to the IFrame, since I tried to access it before it was loaded. With $("#tabFrame").load() function it was accessed at the right time.

  • After that a missing jQuery reference (JSON) was at the origin of the problem :(
    But making a step behind and put simply alert instead of a WebService call, I could manage this.

The code above is the working version.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文