标签:
1、用jQuery或js写HTML元素属性的时候要尽量写得精确。如:
$(‘.village-form input, textarea‘).attr(‘disabled‘, true);
这样写,对于disabled属性的范围就固定了,如果不写.xxxclass的话,则可能因为disabled属性而传不到值到后台。
写得精确的好处就是对其它功能影响较小。
顺带说一下:disabled和readonly在表单提交的时候会有区别。
更多信息:在百度input框内输入关键字:input disabled 提交
标签:
原文地址:http://www.cnblogs.com/Teofil/p/4286261.html