jquery下操作HTML控件的实现代码_jquery
程序员文章站
2022-03-19 23:18:32
...
操作下拉框[Select]
1. $("#seelctId").append("");//给下拉框增加 一下option选项 (ddlSayTo这是下拉框的ID)
$("#seelctId").val(optionval);//选中刚才增加的option
2. $("#seelctId option:selected").text();//得到当前选中的选项的文本值
$("#seelctId").val();//得到当前选中的选项的option值
1. $("#seelctId").append("");//给下拉框增加 一下option选项 (ddlSayTo这是下拉框的ID)
$("#seelctId").val(optionval);//选中刚才增加的option
2. $("#seelctId option:selected").text();//得到当前选中的选项的文本值
$("#seelctId").val();//得到当前选中的选项的option值
下一篇: C# 中where类型约束的图文详情介绍