2016-11-30 45 views
0

enter image description here如何在提示jQuery的

刪除標題如何刪除提示標題爲「本地主機說:」使用jQuery

+1

你不能,它是由瀏覽器設置的。 –

+0

你需要使用你自己的彈出框的 –

+0

你不能改變它。唯一你能做的就是;改用圖書館。 http://www.jqueryscript.net/tags.php?/prompt/ –

回答

0

可能是這樣可以工作。另請參閱same hear

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

仔細閱讀問題。它關於提示不jQuery UI對話框。 –

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

你可以找到很多的谷歌好的庫。