options,有val,还有text。
jquery获取val,和text的方法,很简单,
因为,首先,你要获取选中的options。
代码如下:
这是获取选中的jquery对象:$("#productCustom_69834d795e7111e49151025041000001").find("option:selected") <pre name="code" class="html">这是获取text,就是看到的文本值:$("#productCustom_69834d795e7111e49151025041000001").find("option:selected").text();
这是获取value:$("#productCustom_69834d795e7111e49151025041000001").find("option:selected").val();
设置属性,readonly,和disalbed,参考文章如下:
http://www.cnblogs.com/RascallySnake/archive/2010/08/03/1791365.html
只需要在你的jquery对象后面加上,.attr("","");就可以了,前几篇jquery的博客里面有介绍。
$("#productCustom_4c5ea8cfe680472da4314f7e943c8784").attr("disabled","disabled"); $("#productCustom_0952a79a9a894a9192eb1df1569f9915").attr("readonly","readonly");
时间: 2024-10-22 22:14:00