访问 HTML 自定义属性

发布于 2024-10-24 04:20:09 字数 260 浏览 5 评论 0原文

我想知道有什么方法可以向 a 添加自定义属性 HTML 元素。

例如,

<input type="text" name="txtNAME1" displayName="dname1" />

在上面的示例中,自定义属性 "displayName" 不是 标准 HTML 属性。所以我想知道是否可以定义相同的值并将预期值推送到服务器并访问相同属性的值。

提前致谢!

I want to know is there any way to add a custom attribute to the a
HTML element.

For example ,

<input type="text" name="txtNAME1" displayName="dname1" />

In the above example the custom attribute "displayName" is not a
standard HTML attribute. So I want to know if I can define the same and push the intended value to the server and access the same attribute's value.

Thanks in advance!

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

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

发布评论

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

评论(1

山人契 2024-10-31 04:20:09

您使用哪种语言?您可以在 C# 中使用 then 执行此操作

<input type="text" name="txtNAME1" displayName="dname1" runat="server" id="test" />

,在后面的代码中:

test.Attributes["displayName"];

您还可以在 jQuery 中访问它

$('test').attr('displayName')

并通过处理程序将其发送到服务器。

Which language are you using? You can do this in C# using

<input type="text" name="txtNAME1" displayName="dname1" runat="server" id="test" />

Then, in the code behind:

test.Attributes["displayName"];

You can also access it in jQuery with

$('test').attr('displayName')

and send it through to the server via a handler.

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