如何使用jquery
删除提示标题“localhost说”答案 0 :(得分:0)
可能这可行。另请参阅same hear。
$(".ui-dialog-titlebar").hide();
答案 1 :(得分:0)
你不能。只有您可以使用自己的模块窗口。 或者图书馆:
上一个链接的示例:
swal({
title: "An input!",
text: "Write something interesting:",
type: "input",
showCancelButton: true,
closeOnConfirm: false,
animation: "slide-from-top",
inputPlaceholder: "Write something"
},
function(inputValue){
if (inputValue === false) return false;
if (inputValue === "") {
swal.showInputError("You need to write something!");
return false
}
swal("Nice!", "You wrote: " + inputValue, "success");
});
你可以在谷歌找到很多好的图书馆。