我使用下面的 jquery 来更改 jquery 迭代的所有名称属性值。我尝试将 id 值分配给 div 内所有控件的 name 属性,并且 div id 是Register
。这是我的代码。
$(document).ready(function () {
$.each($('#Register').children(), function () {
alert("pp");
$(this).attr("name", $(this).attr("id"));
});
});
当我运行我的页面时,上面的脚本假设运行但它没有运行。所以请指导我在哪里犯了错误。谢谢
更新
最后这行得通
$(document).ready(function () {
$('#Register').find('*').each(function () {
$(this).attr("name", $(this).attr("id"));
});
});