当我更改国家/地区选择框时,我在页面中有一些代码会加载城市列表。
我正在尝试使用流动代码在页面中设置默认值,但 .then 之后的 jquery 不起作用。有任何想法吗?
这个国家工作完美,但城市没有加载。
jQuery(window).load(function() {
jQuery(document).ready(function(){
jQuery('#jr_country').val('united-kingdom');
jQuery.when( jQuery('#jr_country').change() ).then( jQuery('#jr_city').val('london') );
});
});