jquery ajax 读取联动菜单 select菜单

JavaScript Code
- <script type="text/javascript">
- $(document).ready(function()
- {
- $(".country").change(function()
- {
- var id=$(this).val();
- var dataString = 'id='+ id;
- $.ajax
- ({
- type: "POST",
- url: "ajax.php",
- data: dataString,
- cache: false,
- success: function(html)
- {
- $(".city").html(html);
- }
- });
- });
- });
- </script>
XML/HTML Code
- <div style="margin:20px">
- <label>大类:</label> <select name="country" class="country">
- <option selected="selected">--Select--</option>
- <?php
- include('../../conn.php');
- $sql=mysql_query("select * from bigclass");
- while($row=mysql_fetch_array($sql))
- {
- $id=$row['bigclassid'];
- $data=$row['bigclassname'];
- echo '<option value="'.$id.'">'.$data.'</option>';
- } ?>
- </select> <br/><br/>
- <label>小类 :</label>
- <select name="city" class="city">
- <option selected="selected">--Select--</option>
- </select>
- </div>
ajax.php
PHP Code
- <?php
- include('conn.php');
- if($_POST['id'])
- {
- $id=$_POST['id'];
- $sql=mysql_query("select * from smallclass where bigclassid='$id'");
- while($row=mysql_fetch_array($sql))
- {
- $id=$row['smallclassid'];
- $data=$row['smallclassname'];
- echo '<option value="'.$id.'">'.$data.'</option>';
- }
- }
- ?>
原文地址:http://www.freejs.net/article_biaodan_100.html
最近更新
- 响应式全屏手风琴菜单,同时支持垂直方...
- 分组select选择器,支持多选和单...
- jQuery时间日期选择器代码日历插...
- Select 选择器 可以清空的单选...
- jQuery json 无刷新翻页 ...
- 纯css3带倒影效果的图片翻转特效
我爱薅羊毛
点击最多
广告赞助
相关文章
- 美化input radio select等输入框,...
- select 下拉框多选,用select代替che...
- jQuery下拉多选插件 下拉框复选 包括全选
- radio单选框彩色,自定义边框,圆点颜色和大小
- 自定义checkbox和radio样式 圆形方形...
- select下拉菜单带图片