获得table某个单元格的内容,然后将select中等于该内容的项,变为选中项。
代码如下vartds=$('#infortr:eq(1)td:nth-child(7)').html();$("#seachContinent").find("optio...
代码如下
var tds=$('#infor tr:eq(1) td:nth-child(7)').html();
$("#seachContinent").find("option[text='"+tds+"']").attr("selected",true);
请问问题出在哪里? tds可以获得内容,放到第二行就没用 展开
var tds=$('#infor tr:eq(1) td:nth-child(7)').html();
$("#seachContinent").find("option[text='"+tds+"']").attr("selected",true);
请问问题出在哪里? tds可以获得内容,放到第二行就没用 展开
1个回答
展开全部
$("#seachContinent").find("option").each(function(){
var $this = $(this);
if($this.text() == tds){
$this.prop("selected",true);
}
});
更多追问追答
追问
我试了一下 还是不好用哎
if($this.text() == tds)一直是假
我觉的是存在编码的问题导致$this.text()和tds一直不相等
追答
var tds = $.trim($('#infor tr:eq(1) td:nth-child(7)').text());
$("#seachContinent").find("option").each(function(){
var $this = $(this);
if($.trim($this.text()) == tds){
$this.prop("selected",true);
}
});
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询