日期:2014-05-20 浏览次数:20662 次
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>无标题文档</title> <style type="text/css"> #carstyle option{ display:none; } #carstyle .selected{ display:block; } </style> <script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript"> $().ready(function(){ $("select").change(function(){ //$(this).each(function(){ var selectbrand = $(this).attr("value"); var $selectstyle = $("#carstyle option[value='"+selectbrand+"']"); var $noselectstyle = $("#carstyle option[value !='"+selectbrand+"']"); //alert($selectstyle); //alert(noselectstyle); $noselectstyle.hide(); $("#carstyle.selected").show(); $selectstyle.show(); //}); }); }); </script> </head> <body> <form id="form1" name="form1" method="post" action=""> 汽车品牌 <select id="carbrand"> <option value="" selected="selected">--请选择--</option> <option value="lbjn">兰博基尼</option> <option value="bwm">宝马</option> <option value="bc">奔驰</option> <option value="ad">奥迪</option> </select> 汽车型号 <select id="carstyle"> <option class="selected" value="" selected="selected">--请选择--</option> <option value="lbjn">lb1</option> <option value="lbjn">lb2</option> <option value="lbjn">lb3</option> <option value="bwm">b11</option>