我的页面有三个 html 选择标签。
我希望这三个选择标签具有以下功能:
当我更改 selectA 时, selectB 会根据 selectA 自动更改。当selectB的选项已经创建时,当我改变selectB而不是selectC根据selectB自动改变。
(
例如...
首先selectA的选项有歌手,电影明星,selectB只是空的。
当歌手选项勾选时,selectB自动创建选项“Lady Gaga”,“Celine Dion”,“Whitney Houston”,如果三个歌手已经创建,当我勾选“Lady Gaga”时,selectC将创建“生日”,“Facebook”, “谷歌+”选项。
当电影明星选项选中时,selectB自动创建选项“布鲁斯威利斯”,“马特达蒙”,“威尔史密斯”,如果三个电影明星已经创建,当我选中“布鲁斯威利斯”时,selectC将创建“生日”,“Facebook " 、 "google+" 选项。
)
我的问题是...当我更改 selectB 时, $("#selectB_id").change() 不起作用
以下是我的 javascript 代码:
$(function(){
$("#lineselect").change( function() {
$.ajax({
url: '/lineflow/ajaxgetselect',
type:'POST',
data:{ service_id:$("#lineselect option:checked").val() , level:1 },
success: function( res ){
var obj = jQuery.parseJSON(res);
if( $("#lineselect").val() == 0 )
{
$("#second_li").html("");
$("#third_li").html("");
}
else if( $("#lineselect").val() == 1 )
{
$("#second_li").html("");
$("#third_li").html("");
$("#second_li").html('<select id="service_type" name="service_type"><option value="0">ALL</option></select>');
$("#third_li").html('<select id="service_name" name="service_name"><option value="0">ALL</option></select>');
for( i=0; i<obj.length; i++)
{
$('#service_type').append($("<option></option>")
.attr("value",obj[i].id)
.text(obj[i].name));
}
}
else if( $("#lineselect").val() == 2 )
{
$("#second_li").html("");
$("#third_li").html("");
$("#second_li").html('<input type="text" id="url_name" name="url_name"></input>');
}
else if( $("#lineselect").val() == 3 )
{
$("#second_li").html("");
$("#third_li").html("");
$("#second_li").html('<select id="url_type" name="url_type"><option value="0">ALL</option></select>');
for( i=0; i<obj.length; i++)
{
$('#url_type').append($("<option></option>")
.attr("value",obj[i].id)
.text(obj[i].name));
}
}
},
error: function(obj, status, err){}
});
});
$("#service_type").change( function() { // this change not work!!!
$.ajax({
url: '/lineflow/ajaxgetselect',
type:'POST',
data:{ service_id:$("#service_type option:checked").val() , level:2 },
success: function( res ){
var obj = jQuery.parseJSON(res);
$("#third_li").html("");
$("#third_li").html('<select id="service_name" name="service_name"><option value="0">ALL</option></select>');
for( i=0; i<obj.length; i++)
{
$('#service_type').append($("<option></option>")
.attr("value",obj[i].id)
.text(obj[i].name));
}
},
error: function(obj, status, err){}
});
});
});