使用javascript获取标签名称
我想知道是否可以获取文本框中的标签名称。 例如,以下代码询问用户的姓名,“Your name”是标签。
<label>Your name:</label> <input type="text" size="15" name="name" />
我想知道是否可以使用javascript获取标签名称“你的名字”。
I want to know whether it is possible to obtain the label name along the text box.
For example, the following code asks the user for their name and "Your name" is the label.
<label>Your name:</label> <input type="text" size="15" name="name" />
I want to know if I can obtain the label name "Your Name" using javascript.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
第一种方法的答案很聪明:
查找与给定关联的 html 标签输入
否则使用工具包和大量笨拙的 DOM 遍历。
The answer on the first approach is clever:
Find html label associated with a given input
Otherwise use a toolkit and lots of clumsy DOM traversal.
Javascript方法
document.getElementById('<%=Label.ClientID%>').value
JQuery方法
Javascript Method
document.getElementById('<%=Label.ClientID%>').value
JQuery Method