我需要在使用 javascript 单击复选框时更改其名称属性,但我不确定如何执行此操作。这是我尝试过的:
$("#first").click(function() {
$(#first).attr("name", thatName);
alert(#first).attr("name");
});
<input type="checkbox" name="thisName" id="first">
不好!任何帮助表示赞赏。
编辑...我想我明白了!...任何人都可以提供有关此解决方案的反馈:
$(document).ready(function(){
$("#first").click(function() {
$("#first").attr("name", "chump");
alert($("#first").attr("name"));
});
});
它有效,但我想听听任何人关于它是否会出现问题的想法。