我试图使用 jQuery 将属性设置为输入标签。输入标签的所有其他属性,如 maxlength、name、class 都运行良好。但我在使用必需属性时遇到问题。
我试过这种方式
$("<label><strong>Class"+fare+"</strong></label><input type='text' value='' />")
.attr("class", "nameval") .attr("name", "class"+fare+"") .attr("required","required")
我还尝试了参考一些论坛的其他方法
.attr("required","")
.attr("required",true)
.attr("required","true")
.prop("required",true)
请让我知道我错在哪里。