原来onchange=“fucntionname(parms)”;
1 <select name="country" id="selCountries_{$sn}" onchange="region.changed(this, 1, ‘selProvinces_{$sn}‘)" style="border:1px solid #ccc;"> 2 <option value="0">{$lang.please_select}{$name_of_region[0]}</option> 3 <!-- {foreach from=$country_list item=country} --> 4 <option value="{$country.region_id}" {if $consignee.country eq $country.region_id}selected{/if}>{$country.region_name}</option> 5 <!-- {/foreach} --> 6 </select>
现在在document的ready()事件里面就自动执行onchange事件。
1 <script type="text/javascript"> 2 $(document).ready(function(){ 3 var onll=document.getElementsById(‘selCountries_0‘); 4 region.changed(onll, 1, ‘selProvinces_0‘); 5 }) 6 </script>
看,现在相当于一加载文档,就自动点击选择了“中国”;
时间: 2024-10-10 21:55:44