jQuery在HTML文档加载完毕后自动执行某个事件;

时间:2021-11-01 12:55:03
jQuery在HTML文档加载完毕后自动执行某个事件;

原来onchange=“fucntionname(parms)”;

     <select name="country" id="selCountries_{$sn}" onchange="region.changed(this, 1, 'selProvinces_{$sn}')" style="border:1px solid #ccc;">
         <option value="0">{$lang.please_select}{$name_of_region[0]}</option>
         <!-- {foreach from=$country_list item=country} -->
         <option value="{$country.region_id}" {if $consignee.country eq $country.region_id}selected{/if}>{$country.region_name}</option>
         <!-- {/foreach} -->
       </select>

现在在document的ready()事件里面就自动执行onchange事件。

 <script type="text/javascript">
     $(document).ready(function(){
         var onll=document.getElementsById('selCountries_0');
         region.changed(onll, 1, 'selProvinces_0');
     })
 </script>

看,现在相当于一加载文档,就自动点击选择了“中国”;