ASP.NET - 将 CSS 元素应用到 Master 的(子)页面时出现问题

发布于 2024-11-16 04:38:05 字数 406 浏览 3 评论 0原文

我有一些基于 HTML 元素 id 的 CSS 元素。例如

ul#subNav div
{   
    /*top:45px !important;*/
    position: relative;
    visibility: hidden;
    margin: 0;
    padding: 0;
    background: #C6DEFF;
    border: 1px solid #5970B2;
    z-index:2020; 
}

,现在,我无法将此样式应用于基于母版页的网页(ASP.NET Web 表单),因为在渲染时,UL“subnav”的 ID 更改为“ctl100_subnav”,因此浏览器不再适用CSS。

有什么想法可以克服这个问题吗?

提前致谢。

I have some CSS elements based on ids of HTML elements. e.g.

ul#subNav div
{   
    /*top:45px !important;*/
    position: relative;
    visibility: hidden;
    margin: 0;
    padding: 0;
    background: #C6DEFF;
    border: 1px solid #5970B2;
    z-index:2020; 
}

Now, I cannot apply this style to a Webpage (ASP.NET Web form) based on a Master Page, since, at the time of rendering, The ID of UL "subnav" changes to "ctl100_subnav" and hence browser no longer applies the CSS.

Any idea to overcome this?

Thanks in advance.

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

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

发布评论

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

评论(1

瑶笙 2024-11-23 04:38:05

将类添加到 SubNav div 并将 CSS 应用于该类而不是 ID。

或者您正在使用.net 4

为了避免控件中的命名冲突,ASP.NET 2.0/3.5 使用了 ClientID,这使得每个控件生成该页面唯一的 id 属性。然而,生成的这些 ID 很长且不可预测。一直使用 JavaScript 等脚本语言进行客户端编程的开发人员在脚本中引用这些 ClientID 时,都会遇到一些悲惨的故事。

ASP.NET 4.0 现在通过新的 ClientIDMode 属性将对 ASP.NET 控件生成的 ClientID 的控制权交还给开发人员。在我个人看来,这是 ASP.NET 团队做出的一个很好的设计决策,因为许多 ASP.NET 开发人员正在使用客户端编程来增强他们的界面,并且像 jQuery 这样的流行 JavaScript 框架变得越来越流行。

Add a class to the SubNav div and apply CSS to the class and not to the ID.

Or you are using .net 4

In order to avoid naming conflicts in controls, ASP.NET 2.0/3.5 used ClientID’s, which made each control generate the id attribute unique to that page. However these ID’s generated were long and unpredictable. Developers who have been doing Client-Side programming using a scripting language like JavaScript, have sorrow tales to tell when it came to referencing those ClientID’s in their scripts.

ASP.NET 4.0 through the new ClientIDMode property, now gives control back to the developer over the ClientID’s generated by ASP.NET controls. In my personal opinion, this was a good design decision taken by the ASP.NET team, since a lot of ASP.NET developers are using Client-side programming to enhance their interfaces and popular JavaScript frameworks like jQuery are getting more popular.

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