获取当前文本<选择>选择>
<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 %>
或
alert($("#<%=sctFieldMain.ClientID %> option:selected").val());
此重新运行未定义
或
alert($("#<%=sctFieldMain.ClientID %> option:selected").html());
返回 null
我喜欢获取 Cureent Text。所选择的
<select runat="server" id="sctFieldMain">
<option></option>
</select>
Script
$(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());
this retrun <%=sctFieldMain.ClientID %>
or
alert($("#<%=sctFieldMain.ClientID %> option:selected").val());
this retrun undefined
or
alert($("#<%=sctFieldMain.ClientID %> option:selected").html());
return null
i like get Cureent Text. that selected
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
编辑
您的问题也重复这个和这个。
Use
EDITED
Also your question duplicates this one and this.
您不需要 html() 函数后面的分号,并且 val 不会返回您要查找的 html。
但是,如果您有以下内容并且想要值“Example”,那么您应该使用 val()
You don't need the semi colon after the html() function and val does not return the html which is what your looking for.
However if you had the following and wanted the value "Example" then you should use val()