javascript-无法使用jquery设置选择的选定值
作者:互联网
这是我的HTML代码
<select id="ddlCountry" placeholder="optional" class="select" title="Select Country">
<option value="0">Select Country</option>
</select>
这是jQuery代码…..
$(document).ready(function () {
$('select.select').each(function () {
var title = $(this).attr('title');
if ($('option:selected', this).val() != '') {
title = $('option:selected', this).text();
$(this)
.css({
'z-index': 10,
'opacity': 0,
'-khtml-appearance': 'none'
})
.after('<span class="select">' + title + '</span>')
.change(function () {
val = $('option:selected', this).text();
$(this).next().text(val);
})
}
});
var country = [{
"CountryID": 1,
"CountryName": "Afghanistan"
}, {
"CountryID": 2,
"CountryName": "Albania"
}, {
"CountryID": 3,
"CountryName": "Algeria"
}, {
"CountryID": 4,
"CountryName": "American Samoa"
}, {
"CountryID": 5,
"CountryName": "Andorra"
}, {
"CountryID": 6,
"CountryName": "Angola"
}, {
"CountryID": 7,
"CountryName": "Anguilla"
}, {
"CountryID": 8,
"CountryName": "Antarctica"
}, {
"CountryID": 9,
"CountryName": "Antigua and Barbuda"
}, {
"CountryID": 10,
"CountryName": "Argentina"
}];
$.each(country, function (index, item) {
$('#ddlCountry').append($('<option></option>').val(item.CountryID).html(item.CountryName));
});
$('#ddlCountry').val(2);
});
我已将下拉菜单中的下拉列表设置为2,但默认值始终是“选择国家/地区”
这是jsfiddle
解决方法:
以编程方式更改select的所选值时,不会触发onchange事件.手动触发它:
$('#ddlCountry').val(2).change();
标签:html-select,html,javascript,jquery 来源: https://codeday.me/bug/20191030/1967437.html