标签:style color strong os rgb amp
大家都理解这是什么,正常的写法如下:
if (status == true) {
$("#minDelistStr").val(totalAmount);// 去掉首部的“,”并写入到货品id串中
$("#minDelistStr").attr("readonly",true);
}
可是在网上我居然看见有人说写成:
jQuery(
$("#id").attr("readonly":"readonly"); //添加readonly属性 & $("#ID").attr({ readonly: ‘true‘ });
$("#id").removeAttr("readonly"); //去除readonly属性
);
这是不对,至少我在火狐上试过了。
标签:style color strong os rgb amp
原文地址:http://blog.csdn.net/hjm4702192/article/details/37566053