jquery下操作HTML控件的实现代码_jquery
时间:2021-07-01 10:21:17
帮助过:5人阅读
操作下拉框[Select]
1. $("#seelctId").append("");//给下拉框增加 一下option选项 (ddlSayTo这是下拉框的ID)
$("#seelctId").val(optionval);//选中刚才增加的option
2. $("#seelctId option:selected").text();//得到当前选中的选项的文本值
$("#seelctId").val();//得到当前选中的选项的option值