<script>
$(document).ready(function(){
$('#map').vectorMap({
map: 'world_mill',
backgroundColor: 'transparent',
zoomOnScroll: false,
regionsSelectable: true,
regionsSelectableOne: true,
regionStyle: {
initial: { fill: '#787878' },
selected: { fill: '#bd8b3b' }
},
series: {
regions: [{
values: {
'GB': '#004b85',
'MY': '#004b85',
'AT': '#004b85',
'JP': '#004b85',
'US': '#004b85',
'NL': '#004b85',
},
attribute: 'fill'
},
{attribute: 'fill-opacity'}]
},
onRegionClick: function (event, code) {
var name = map2.getRegionName(code);
alert(name);
$("[id*='Country_DropDownList'] :selected").text() = name;
}
});
});
当我单击JVectorMap国家时,如何更改我的下拉列表选择的文本?
比方说,当我单击“俄罗斯”时,我的下拉列表会自动将其值更改为“俄罗斯”。
谢谢!