var tds=$('#infor tr:eq(1) td:nth-child(7)').html();
$("#seachContinent").find("option[text='"+tds+"']").attr("selected",true);
tds可以獲得內容,第二行中的tds若寫死為“非洲”也是好用的,但是上面的這樣寫就不好用,請問問題出在哪裡?
是不是有空格什麼的。自己用jquery的trim方法去掉下首位空格
var tds = $.trim($('#infor tr:eq(1) td:nth-child(7)').html());