美文网首页
jquery给select赋默认值

jquery给select赋默认值

作者: 姜小码 | 来源:发表于2016-08-04 00:44 被阅读50次

假设有选择性别的select标签,如何赋默认值?

<select id="gender">
    <option value="1">女</option>
    <option value="2">男</option>
    <option value="3">保密</option>
</select>

用jquery可以很方便地赋默认值:

$("#gender").val(2);

done

相关文章

网友评论

      本文标题:jquery给select赋默认值

      本文链接:https://www.haomeiwen.com/subject/jtrcsttx.html