ASP.NET MVC 和 ASCX 中的 DOM 元素可访问性

发布于 2024-11-30 11:56:55 字数 163 浏览 2 评论 0原文

我有一个复杂的 ascx 视图,我使用 $.ajax() 将“ascx”部分视图加载到 div 中。所以我想知道主页和 ascx 部分视图中包含的 DOM 元素的可访问性。使用 jQuery 选择器,我可以从 ascx 部分视图中找到主页中的元素吗?反过来呢?

I have a complex asp.net mvc view where I load an "ascx" partial view into a div using $.ajax(). So I was wondering about the accessibility of the DOM elements contained in the main page and the ascx partial view. Using jQuery selectors, can I find an element in the main page from the ascx partial view? and the other way round?

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

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

发布评论

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

评论(1

饭团 2024-12-07 11:56:55

两种方式都可以,具体取决于时间点。

您始终可以从主视图访问元素,因为 HTML 在渲染时绑定(例如 $(document).ready()

您将无法访问部分视图中的元素从父视图直到 $.ajax 方法的回调成功完成并且您已将 HTML 绑定到 DOM(例如使用 .html(result))。

Both ways, depending on the point on time.

You can always access the elements from the main view, since the HTML is bound at render-time (e.g $(document).ready())

You won't be access the elements in the partial view from the parent view until the callback from the $.ajax method has completed successfully and you have binded the HTML to the DOM (with .html(result) for example).

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