请帮助我。我有一个下拉列表,其中包含商店 A 和商店 B。商店 A 的值为 1,商店 B 的值为 2。当从下拉列表中选择商店 A 时,我想将数据库中的数据列为与每个商店对应的表。这是我的html
店铺选择 >ShopA >ShopB这是我的 js $("#shop").change(function(){
// get the selected user's id
var id = $(this).find(":selected").val();
// load it in the userInfo div above
$("#container").load("table_data.php?id="+id);
});