jquery 插件应用 下拉框中带有搜索框

下拉列表数据太多也会让人眼花缭乱,有搜索框就很容易的解决这个问题

一 、引入css js




jsp页面写法


	选择城市:
	
	 * 		
	






获取选择的值

jQuery("#financialIds").change(function(){
		var checkText=jQuery("#financialIds").find("option:selected").text(); //获取Select选择的Text 
			var checkValue=jQuery("#financialIds").val(); //获取Select选择的Value
			var checkTile=jQuery("#financialIds").find("option:selected").attr("title"); //获取Select选择的title 
			window.location.reload();//刷新当前页面.
})
附上js下载地址:
http://download.csdn.net/detail/duankelin/9318281



你可能感兴趣的:(jquery)