标签:js函数 this
<select onchange="getchildrensort(this)">
<option value="0">请选择</option>
<volist id="vo" name="list">
<option value="{$vo.id}">{$vo.name}</option>
</volist>
</select>
select的onchange事件,会触发函数getchildrensort(),这个函数把select对象作为参数传了过去
标签:js函数 this
原文地址:http://hua120.blog.51cto.com/9643282/1582378