访问 HTML 自定义属性
我想知道有什么方法可以向 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用哪种语言?您可以在 C# 中使用 then 执行此操作
,在后面的代码中:
您还可以在 jQuery 中访问它
并通过处理程序将其发送到服务器。
Which language are you using? You can do this in C# using
Then, in the code behind:
You can also access it in jQuery with
and send it through to the server via a handler.