用 jQuery 在你的 JavaScript 控制台(Chrome 或其他东西)上试试这个。
var jo = $("<xml required=\"true\" name=\"lol\"></xml>"); //test xml
jo.attr("required"); //returns "required" instead of true
jo.attr("name"); //returns correct "lol"
jo.prop("required"); //returns undefined
jo.prop("name"); //returns undefined
任何人都有一个可行的解决方案来获得true/false
这个xml的正确所需值()?
.prop()
仅适用于 html 之类的<input>
.