代码:
<tr>
<th>空间性质</th>
<td>
<input type="hidden" id = "class" value="{$post.post_class}"/>
<select class="form-control" name="post[post_class]" id="class2" value="{$post.post_class}">
<option value="0" id="op1">出售</option>
<option value="1" id="op2">出租</option>
</select>
</td>
</tr>
根据value={$post.post_class}
的值而显示不同的选项值,value只有0,1两个值。TKS
黄舟2017-06-28 09:27:35
默认选择是吧,用jquery的attr就可以了,假设默认选择值为1的选项,代码如下:
$("#class option[value='1']").attr('selected',true);
给我你的怀抱2017-06-28 09:27:35
由于:document.querySelector('#class').value
获取不到select中的value值(即<select class="form-control" name="post[post_class]" id="class2" value="{$post.post_class}">
)。
所以加一个隐藏的input <input type="hidden" id = "class" value="{$post.post_class}"/>
来获取后台传来的值,然后再判断。
<script type="text/javascript">
var sv = document.getElementById('class').value;
if(sv == 0){
$("#class2 option[value='0']").attr('selected',true);
}else {
$("#class2 option[value='1']").attr('selected',true);
}
</script>