前端之家收集整理的这篇文章主要介绍了
jQuery动态选择器,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一些
代码在循环中使用选择器。
这样做:
document.getElementById("new_grouping_"+i).value
这不是:$(“#new_grouping_”i).value
有没有办法使用jQuery?
您应该使用
val()功能:
var myValue = $("#new_grouping_"+i).val(); // to get the value
$("#new_grouping_"+i).val("something"); // to set the value
原文链接:https://www.f2er.com/jquery/182188.html