我設計的選擇選項動態HTML像下面的選項:選擇動態使用jQuery
item += "<td class='ddl' style='width:40%;'>";
item += "<select>"
item += " <option id='list' name='selector' value=" + select + ">" + select + "</option>";
for (var l = 0; l < array.length; l++) {
item += " <option class='ddl' value=" + array[l] + ">" + array[l] + "</option>";
}
item += "</select>";
if ("One"!= '') {
$('#list').val("One");
}
item += "</td>";
上面的代碼創建一個動態HTML象下面這樣:
<select disabled="">
<option select="" value="Please" name="selector" id="list">Please Select</option>
<option value="One" class="ddl">One</option>
<option value="Two" class="ddl">Two</option>
</select>
我想設置值選擇爲「One」動態。
注意:代碼不在document.ready中,因爲我不能將代碼保存在ready()中。 可能是我在賦值給Select之前,它在頁面上被複原。請建議我。
什麼是:if(「One」!=''){'? – Felix
@Felix總是「真」的表達。 :-) –
OP:在嘗試選擇選項 – Taleeb