前台 html,用的是 springmvc form
<form:select id="goodSelectId" path="goodId" items="${goodsList}"
itemLabel="name" itemValue="goodCode">
<form:option value="">请选择商品</form:option>
</form:select>
<form:checkbox path="flag" id="flag" value="1"
onchange="change(this, 'goodSelectId')"/> 低消产品
javascript 脚本函数:
function change(self, targetId) {
if ($(self).is(':checked')) {
$("#" + targetId).attr("disabled", true);
$("#" + targetId).val("");
}
else {
$("#" + targetId).attr("disabled", false);
}
}
当下面的 checkbox 打钩后,要使得 select 元素的值为空 我用$("#id").val(""); 但是发现不起作用 传到后台“ goodId ”依然有值 怎么回事?
1
oh 2017-08-14 14:00:29 +08:00
试试 $("#id").removeAttr("value");
|