ASP.Net 从哪里获取其呈现的 ID?

发布于 2024-08-29 04:10:55 字数 713 浏览 5 评论 0原文

我继承了一个带有一些令人讨厌的 JavaScript 的项目,该项目依赖于硬编码的对象 ID。
即有很多地方它会执行类似这样的操作

var magazine = document.getElementById('repModuleDisplay__ctl3_chkCats_0');

当页面在我的 UAT 环境中呈现时,HTML 看起来像这样,并且一切正常。

<input id="repModuleDisplay__ctl3_chkCats_0" 
    type="checkbox" name="repModuleDisplay:_ctl3:chkCats:0"  
    ... etc

然而,当我把它放在生产环境中时,HTML 突然像这样呈现:

<input id="repModuleDisplay_ctl03_chkCats_0" 
    type="checkbox" name="repModuleDisplay$ctl03$chkCats$0" 
    ... etc

id 的差异意味着 JavaScript 无法找到该元素,并且失败。

在理想的情况下,我会废弃有缺陷的 JavaScript 并正确地再次执行它,但为了快速修复,我想知道是什么导致了两个环境之间渲染的差异。

有人有什么想法吗?

谢谢, 尼尔

I've inherited a project with some nasty JavaScript that depends on hard coded object ids.
i.e. There are lots of places where it does things like this

var magazine = document.getElementById('repModuleDisplay__ctl3_chkCats_0');

When the page renders in my UAT environment, the HTML looks like this, and everything works OK.

<input id="repModuleDisplay__ctl3_chkCats_0" 
    type="checkbox" name="repModuleDisplay:_ctl3:chkCats:0"  
    ... etc

However, when I put it on my Production environment, the HTML is suddenly rending like this:

<input id="repModuleDisplay_ctl03_chkCats_0" 
    type="checkbox" name="repModuleDisplay$ctl03$chkCats$0" 
    ... etc

The difference in ids means that the JavaScript can't find the Element, and fails.

In an ideal world, I'd scrap the buggy JavaScript and do it again properly, but for a quick fix, I'd like to know what is causing the difference in rendering between the two environments.

Does anyone have any ideas?

Thanks,
Neil

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

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

发布评论

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

评论(4

明天过后 2024-09-05 04:10:55

我能想到的最快、最简单的修复方法(如果代码到处都是,可能不是特别快或容易)是使用控件的实际 ClientID 属性,而不是尝试猜猜生成的 id 可能是什么:

// i've assumed that the control is named chkCats
var magazine = document.getElementById('<%= chkCats.ClientID %>');

The quickest and easiest fix I can think of -- and it's probably not particularly quick or easy if the code is all over the place -- is to use the actual ClientID property of the control instead of trying to guess what the generated id might be:

// i've assumed that the control is named chkCats
var magazine = document.getElementById('<%= chkCats.ClientID %>');
生来就爱笑 2024-09-05 04:10:55

您必须使用 clientID 进行 asp.net 控制。

'<%=mycontrol.ClientID %>'

You must use clientID for asp.net control.

'<%=mycontrol.ClientID %>'
无敌元气妹 2024-09-05 04:10:55

使用 .NET4 并在要与 js 一起使用的控件上设置 ClientIDMode 属性。

例如;

  <asp:TextBox ID="txtComment" runat="server" CssClass="myClass"
    ClientIDMode="Static" MaxLength="1024"></asp:TextBox>

Use .NET4 and set the ClientIDMode property on your controls that you want to use with js.

EG;

  <asp:TextBox ID="txtComment" runat="server" CssClass="myClass"
    ClientIDMode="Static" MaxLength="1024"></asp:TextBox>
你丑哭了我 2024-09-05 04:10:55

此链接 简要描述了 ASP.NET 如何创建 ids,所有其他发帖者都推荐了使用控件的 ClientID 的正确解决方案。

如果您想避开 ASP 样式标记,那么另一个选择是在 PreRender 期间向您的页面发出一些 js:

StringBuilder sb = new StringBuilder();
sb.AppendLine(string.Format("var myTextBox = document.getElementById('{0}');", MyTextBox.ClientID));
if (!Page.ClientScript.IsClientScriptBlockRegistered(this.GetType(), "myElementDefinitions"))
    Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "myElementDefinitions", sb.ToString());

然后在您的 javascript 代码中您只需使用名称 myTextBox 引用它。此选项可能不适合您,具体取决于您的代码以及您使用 ASP 标记引用同一控件 ID 的频率。

This link gives you a brief description of how ASP.NET creates the ids, and all the other posters have recommended the right solution of using the control's ClientID.

If you want to steer clear of the ASP style tags, then another option is to emit some js to your page during the PreRender:

StringBuilder sb = new StringBuilder();
sb.AppendLine(string.Format("var myTextBox = document.getElementById('{0}');", MyTextBox.ClientID));
if (!Page.ClientScript.IsClientScriptBlockRegistered(this.GetType(), "myElementDefinitions"))
    Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "myElementDefinitions", sb.ToString());

and then in your javascript code you just refer to it with the name myTextBox. This option may not suit you, depends upon your code and how often you are using ASP tags to reference the same control id.

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