使用javascript获取标签名称

发布于 2024-11-17 18:38:23 字数 214 浏览 1 评论 0原文

我想知道是否可以获取文本框中的标签名称。 例如,以下代码询问用户的姓名,“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 技术交流群。

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

发布评论

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

评论(2

悲歌长辞 2024-11-24 18:38:23

第一种方法的答案很聪明:

查找与给定关联的 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.

方圜几里 2024-11-24 18:38:23

Javascript方法

document.getElementById('<%=Label.ClientID%>').value

JQuery方法

$('#<%= Label.ClientID %>').val()

Javascript Method

document.getElementById('<%=Label.ClientID%>').value

JQuery Method

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