我正在使用Jquery UI
$("#tableDiv select").change(function() {
var getVal=$(this).val();
var getText= $(this[this.selectedIndex]).text();
$( "#dialog-confirm" ).dialog({
resizable: false,
height:140,
modal: true,
buttons: {
"OK": function() {
$( this ).dialog( "close" );
},
Cancel: function() {
//???????????
$( this ).dialog( "close" );
}
}
});
});
如果用户按取消,我想选择第一个选项。当用户取消操作时,当前选择的选项仍然被选中。
让我知道 !