如何循环遍历 tr 内的所有输入并设置属性(id 和 name)
如何使用 JQuery 循环遍历 tr 内的所有输入并设置属性(id 和 name)
How to loop through all inputs inside a tr and set attribute(id and name) with JQuery
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这可以一次性完成:
但是由于 id 应该是唯一的,这可能不是您想要做的。这是一个更好的方法:
这将更改您输入的 id 和名称,如下所示:
您可以在 API 中找到更多信息attr() 的文档。
This could be done in one go:
But since id's are supposed to be unique this is probably not what you want to do. Here's a better approach:
This will change your input's id and name like this:
You can find more info in API docs for attr().
来自 在 jquery 中循环并设置名称和 id
如果放置在脚本标记内,则一旦文档完成,此代码将自动执行由浏览器构建。这就是
$(function() {})
表示法的作用——它是$(document).bind('ready', function() {})
的简写。From Looping and setting name and id in jquery
If placed inside a script tag, this code will automatically execute as soon as the document is finished being constructed by the browser. That's what the
$(function() {})
notation does -- it's shorthand for$(document).bind('ready', function() {})
.