開發工具最有用的功能之一是,當你寫一個函數的名字時,你可以找回它的源代碼。以下是selectCountry
函數的源代碼:
function selectCountry(select) {
if (select.value == "000") return;
var option = select.options[select.selectedIndex];
var ul = select.parentNode.getElementsByTagName('ul')[0];
var choices = ul.getElementsByTagName('input');
for (var i = 0; i < choices.length; i++)
if (choices[i].value == option.value) {
$("#selcountry:selected").removeAttr("selected");
$('#selcountry').val('[]');
return;
}
var li = document.createElement('li');
var input = document.createElement('input');
var text = document.createTextNode(option.firstChild.data);
input.type = 'hidden';
input.name = 'countries[]';
input.value = option.value;
li.appendChild(input);
li.appendChild(text);
li.onclick = delCountry;
ul.appendChild(li);
addCountry(option.firstChild.data, option.value);
$("#selcountry:selected").removeAttr("selected");
$('#selcountry').val('');
}
您的缺陷現在很明顯。 selectCountry
接受整個選擇元件作爲參數而不是在選擇的價值(這是一種可怕的設計,但MEH)。相反,傳遞元素的價值,改變它的指數:
var sel = document.getElementById('selcountry');
var opts = sel.options;
for(var i = 0; i < opts.length; i++) {
sel.selectedIndex = i
selectCountry(sel)
}
我真的希望這是一個測試代碼或類似的東西,你就不是建立在這個產品/工具... – Codeman
請澄清只是那是什麼不起作用。一個jsfiddle也是有幫助的。 –