function SelectDistrict(argument)
{
var sel=document.getElementById("city");
sel.style.display = '';
sel.options.length = 0;
sel.options.add(new Option('Please select a location',''));
var i=1;
var tempInt=parseInt(argument);
if (tempInt%10000==0)
{
var place1=document.getElementById('place1');
place1.innerHTML =county[tempInt];
}
sel.options.add(new Option('all',tempInt));
$('#inputcity').hide();
while (i<=52)
{
tempInt+=100;
if (county[tempInt]==undefined)
{
break;
}
else {
op_cir = new Option(county[tempInt], tempInt);
sel.options.add(op_cir);
}
i++;
}
}
-5
A
回答
2
你可以做這樣的事情:
function SelectDistrict(argument)
{
var sel = $('#city'); // Store the jQuery object to save time
sel.hide().empty().append('<option>Please select a location.</option');
var i = 1;
var tempInt = argument;
if (tempInt % 10000 == 0)
{
$('#place1').html(county[tempInt]);
}
sel.append('<option value="'+tempInt+'">all</option>');
$('#inputcity').hide();
var optionsValue = ''; // Appending strings to each other is faster than modifying the DOM
tempInt += 100;
while ((i <= 52) && (county[tempInt] != undefined)) // Just put the condition here instead of breaking the loop
{
optionsValue += "<option value='" + tempInt + "'>" + county[tempInt] + "</option>";
tempInt += 100;
i++;
}
sel.append(optionsValue);
}
我希望你的作品!
0
您必須用$(「#elementid」)替換每個document.getElementById(),如$(「#city」);
and place1.innerHTML = county [tempInt];由$(「#place1」)。text(county [tempInt]);
0
可以while循環更改爲:
$.each(county, function(i, itm) {
optionsValue += "<option value='" + i + "'>" + itm + "</option>";
})
相關問題
- 1. 如何簡化這個jQuery JavaScript代碼?
- 2. 重寫這個ajax代碼?
- 3. 這個JQuery代碼可以使用純Javascript編寫嗎?
- 4. 如何使用變量縮寫這個jQuery代碼?
- 5. 重構這個jQuery代碼
- 6. 如何重寫這段代碼?
- 7. 如何在jquery中寫這段代碼?
- 8. 將JavaScript代碼重新寫入jQuery
- 9. 使用javascript重寫HTML代碼
- 10. 如何用jQuery重寫這個javascript函數?
- 11. 如何用jquery重寫這個內聯javascript?
- 12. 如何使這個JavaScript/jQuery代碼更短
- 13. 如何使用map和lambda函數重寫這段代碼?
- 14. 這段代碼將如何使用F#重寫?
- 15. 如何重寫這個jQuery的
- 16. 如何重構這個重複的jQuery代碼
- 17. 如何正確地用模板重寫這個使用繼承的C++代碼
- 18. 如何寫這個XML的Java代碼
- 19. Nasm/Assembly如何寫這個僞代碼
- 20. 我如何寫這個代碼在vb.net
- 21. 如何使這個C#代碼很小或重構此代碼
- 22. 如何重寫代碼而不使用jQuery?
- 23. 如何使用Mootools重寫此jQuery代碼?
- 24. 重寫從JavaScript代碼PHP
- 25. 如何使這個代碼
- 26. 這段代碼如何被重構爲使用jQuery?
- 27. 如何使用JQuery使這個舊的JavaScript/ASP Classic代碼(乾淨)不顯眼?
- 28. 如何重寫這個JavaScript接收請求對象爲JQuery
- 29. 這個jQuery代碼添加到ReactJS(或重寫代碼的反應)
- 30. 如何在asp.net代碼中使用C編寫javascript代碼#