Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是关于 JavaScript/jQuery 中的 foreach 函数。
我想要一些关于输入名称通配符的帮助
示例:当单击任何以“field_{something}”开头的输入名称时。
您的问题的格式不是很好,但听起来您正在寻找通配符选择器。
$("[name^=field_]").click(function() { //do stuff });
更多在这个 SO 线程。
$("input[name^=field_]").each(function(){ var currentInput = this; //...do something ... });