2024-09-29 14:47:35
$(function(){
$("#select1").live("change",function(){
var a =$(this).val();
$("#select2").val(a)
})
$("#select2").live("change",function(){
var a =$(this).val();
$("#select2").val(a)
})
})
2024-09-29 05:09:39
$(function () {
var selects = $('#select1, #select2').change(function () {
// jquery 1.6 以下请把prop改成attr
selects.prop('selectedIndex', $(this).prop('selectedIndex'));
});
});
2024-09-29 09:12:08