select框的onchange事件
例如
<select name=type onchange="searchAttr(this.value)"></select> <script><type="text/javascript"> function searchAttr(type_id){ window.location.href = "index.php?p=admin&c=attribute&a=index&type_id="+type_id; } </script>
实现了选择下拉框,下面数据刷新的效果。
时间: 2024-11-02 07:52:52