3
裏面一個類的方法我解析HTML片段是這樣的:jQuery的:從解析的HTML選擇元素片斷
this.editCtrl = $('<input type="radio" name="society" value="existing"><select class="society"></select></input><input type="radio" name="society" value="existing"><input type="text"></input></input>');
我這個片段添加到我的DOM,一切工作正常,但在這樣做之前,我想填補下拉。我試圖讓這樣的:
var dropdown = this.editCtrl.find('select.society');
像這樣:
var dropdown = $('select.society', this.editCtrl);
結果集的長度在這兩種情況下爲零。從這樣的html代碼片段中獲取某個元素的正確方法是什麼?
僅供參考,應該是'',而不是'東西'。輸入元素嚴格爲空:http://www.w3.org/TR/html401/interact/forms.html#h-17.4 –