如何删除提示Jquery上的标题

时间:2016-11-30 10:01:59

标签: javascript jquery

enter image description here

如何使用jquery

删除提示标题“localhost说”

2 个答案:

答案 0 :(得分:0)

可能这可行。另请参阅same hear

$(".ui-dialog-titlebar").hide();

答案 1 :(得分:0)

你不能。只有您可以使用自己的模块窗口。 或者图书馆:

https://alertifyjs.org

http://bootboxjs.com/

http://t4t5.github.io/

上一个链接的示例:

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");
});

你可以在谷歌找到很多好的图书馆。