如何使用jQuery显示标签和输入值?
我需要一个 jQuery 函数,它将遍历具有以下结构的段落:
<p>
<label>some label</label>
<input type="text" value=""/>
</p>
该函数应使用标签文本作为输入值。
谢谢!
I need a jQuery function that'll go through paragraphs with the following structure:
<p>
<label>some label</label>
<input type="text" value=""/>
</p>
The function should use the label text as input value.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
示例: http://jsfiddle.net/D392c/
Example: http://jsfiddle.net/D392c/
您可以使用
.val()
和函数来完成此操作,如下所示:You can do it using
.val()
with a function, like this:http://jsfiddle.net/Fveph/
http://jsfiddle.net/Fveph/
$("p > label") 要解析结构,然后您可以使用 html() 来获取值,但这会返回第一个节点的值...您想对标签文本做什么?
$("p > label") To parse the structures, then you can use html() to get the value, but that returns the first node's value... What do you want to do with the label text?