第三个下拉列表依赖于第一个和第二个下拉列表,并且是不同的。我想在第一个或第二个下拉列表的值改变时加载数据到第三个下拉列表。我的问题是jQuery部分,而不是php。
感谢你的协助。
我的HTML
<select name="first" id="first">
<option value="1">Item 1</option>
<option value="2">Item 2</option>
</select>
<select name="second" id="second">
<option value="1">Item 1</option>
<option value="2">Item 2</option>
</select>
<select name="third" id="third">
//load data when the values of either the first or the second dropdown are changed
</select>
我尝试的诡计
$(function(){
$("#first").change(function() || $("#second").change(function(){
$.post("third.php", {first: $("#first").val(), second: $("#second").val()}, function(data){
$("#third").html(data);
});
return false;
});
});
1条答案
按热度按时间ss2ws0br1#
你想委派