162----下拉框动态添加

来源:互联网 发布:2015-16西部决赛数据 编辑:程序博客网 时间:2024/05/03 21:16
$(document).ready(function(){ $("#select1").change( function(){var id = $("#select1").val();if(id == 1){   //value为1,对应吉林;$.get('index.php', null, function(data){  //null规定连同请求发送到服务器的数据,规定当请求成功时运行的                                                             函数$("span").empty();$("span").append("<select><option>长春</opton><option>松原</opton><option>四平</opton></select>");});}else{$.get('index.php', null, function(data){$("span").empty();$("span").append("<select><option>沈阳</opton><option>大连</opton><option>鞍山</opton></select>");});} });  });

0 0