Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: jQuery removeAttr('type') 不起作用
当我尝试
$('#button').removeAttr('type');
我收到一个错误:
type property cannot be changed
我想知道是否有受保护的html 属性的准确列表。
I'm having the following classes on C#:
public class Record { public Record() { this.Artists = new List<Artist>(); } public int Id { get; set; } pu