本文介绍了获取当前文本< select>的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
<select runat="server" id="sctFieldMain">
<option></option>
</select>
脚本
$(xml).find("FieldMain").each(function()
{
var value=$(this).find('Title').text()
$('#<%=sctFieldMain.ClientID %>').
append($("<option></option>").
attr("value",value).
text(value));
});
alert($("#<%=sctFieldMain.ClientID %> option:selected").text());
此重新运行<%= sctFieldMain.ClientID%>
this retrun <%=sctFieldMain.ClientID %>
或
alert($("#<%=sctFieldMain.ClientID %> option:selected").val());
此重新运行未定义
或
alert($("#<%=sctFieldMain.ClientID %> option:selected").html());
返回空值
我喜欢获得Cureent Text.选择了
i like get Cureent Text. that selected
推荐答案
使用
alert($("#<%=sctFieldMain.ClientID %> option:selected").html());
已编辑
您的问题也重复了此问题和.
这篇关于获取当前文本< select>的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!