我是所有JavaScript和jQuery-Stuff的新手。請原諒我的編碼或我骯髒的風格的任何愚蠢的錯誤。我很高興您的經驗豐富的一方提供所有建設性的反饋意見。創建jQuery元素不在jQuery風格
我嘗試動態添加一些jQuery元素,就像一些新的選擇菜單一樣。在我的例子中,用戶應該決定他想要定製的車輛數量,並基於此我想爲每輛選定的車輛創建一個新的選擇菜單。
我得到它的工作,如果用戶選擇「2車」jQuery將添加兩個新的選擇菜單。但我的問題是,這些菜單不再在jQuery-Style中。
我在這裏做錯了什麼?根據汽車的選擇數量,是否可以在「for-loop」中添加新的菜單?
這裏是我的代碼:
<script type="text/javascript">
$('#select-choice-1').live("change", function(event, ui) {
var valuee = $(this).val();
if (valuee == '2') ($('<label for="select-choice-2" class="select">Color of car #1</label>' +
'<select name="select-choice-2" id="select-choice-2">'+
'<option value="red">red</option>'+
'<option value="blue">blue</option>'+
'</select><br><br>' +
'<label for="select-choice-3" class="select">Color of car #2</label>' +
'<select name="select-choice-3" id="select-choice-3">'+
'<option value="green">green</option>'+
'<option value="yellow">yellow</option>'+
'</select>').appendTo('#site'));
if (valuee == '3') ($('<h1>Test</h1>').appendTo('#site'));
});
</script>
這裏是html頁面:
<div id="site" data-role="fieldcontain">
<label for="select-choice-1" class="select">Number of cars</label>
<select name="select-choice-1" id="select-choice-1">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
</div><!-- "site" -->
你是什麼意思的「jQuery風格」? –
它只是看起來像純html樣式。沒有陰影,只是像這樣的老派選擇領域:http://www.vaannila.com/images/struts1/HtmlSelectTag1Pic1.gif – Stevil
如果通過jQuery風格,你的意思是jQuery-ui樣式,那麼你需要添加到您的HTML相同的類jQuery的用戶界面。 – iMoses