我正在使用js确认。我想用 jquery UI让它更漂亮。
使用js确认:
$("a.delete").click(function() {
el = $(this);
if (confirm("Are you sure you want delete the data?")) {
$.ajax({
url : $(this).attr("href"),
type : "GET",
dataType : 'json', //The requested response in JSON format
success : function(response) {
if (response.status == 1) {
loadData();
$("#divFormContent").load("ajax.php?module=test&action=form_test");
$("#divFormContent").hide();
$("#btn_hide").hide();
// alert("The data successfully deleted!");
} else {
alert("Data failed in the clearing!");
}
}
});
}
return false;
});
谁能告诉我如何使用 jquery UI 确认更改它?