更改JavaScript警报按钮

时间:2011-07-11 20:13:00

标签: javascript button

如何在javascript警报中更改按钮上的字词?我是新人,所以最简单的方式将非常感激。

4 个答案:

答案 0 :(得分:6)

你不能。

相反,您可以使用jQuery UI Dialog在DOM中创建虚假对话框。

答案 1 :(得分:3)

不可能,浏览器设置

你可以做的是从元素中发出虚假警报

答案 2 :(得分:0)

您可以覆盖window.alert并拥有自己的实现。

window.alert = function(msg, options){
     //Create the alert dialog box here using the default options and show the message.
}

您无需在应用程序中更改代码即可使用它。

答案 3 :(得分:0)

尝试这样的事情

    function CustomAlert(msg){
var customAlert = $("#customAlert");
      if(!customAlert.length){
        customAlert = $(document.body).append('<div id="customAlert"><div class="message">Msg></div><div><input class="button"     type="button" value="Ok" /></div></div>').hide();
}
customAlert.find("message").html(msg);

//Code to center the customAlert into view port along with faded background will go here

customAlert.find("input.button").unbind("click").click(function(){ 
 //Hide the customAlert goes here
 customAlert.hide();
});

    }