首页 > 代码库 > JS函数中的this关键字作用

JS函数中的this关键字作用

<select  onchange="getchildrensort(this)">
                <option value="http://www.mamicode.com/0">请选择</option>
                <volist id="vo" name="list">
                <option value="http://www.mamicode.com/{$vo.id}">{$vo.name}</option>
                </volist>
                </select>


select的onchange事件,会触发函数getchildrensort(),这个函数把select对象作为参数传了过去

JS函数中的this关键字作用