下拉框 回显

引入jstl

<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

 下拉框回显

下拉框change 事件(可以用于 下拉框 提交  和上面的 没有什么关系   )

$(document).ready(function(){
            $('#mySelect').change(function(){
               /* var p1=$(this).children('option:selected').val();//这就是selected的值
                var p2=$('#param2').val();//获取本页面其他标签的值*/
               var  a = $(this).children('option:selected').val();
                window.location.href="/grzx/GRZXwdsp?queryMySelect="+a;//页面跳转并传参
            })
        })

 

你可能感兴趣的:(前端)