我的 jsp 中有以下函数,它创建并打开对话框。此 dalog 中有文本框。我想要的是当我进入这个对话框时 CreateCustomer 按钮应该被舔
function createCustomerDialog(){
$("#createCustomerDialog").dialog( {
title : ""Create Customer,
buttons : {
'CreateCustomer' : function() {
},
'Cancel': function() {
$( this ).dialog( "close" );
}
}
});
$("#createCustomerDialog").dialog("open");
}
我试过这个但没有工作
$('.ui-dialog-buttonpane > button:last').focus();