java脚本自定义对话框

时间:2017-04-26 05:49:48

标签: javascript css

我想在中心显示一个对话框并删除"主机名称为..." 并使用css自定义它。

function myFunction() {
alert("Record Save");
}
提前

thanx

1 个答案:

答案 0 :(得分:0)

您无法自定义javascript警报,它由浏览器100%处理。您需要做的是为警报创建自己的功能。

所以你有类似的东西:

// CSS
.myAlert {
    position: fixed;
    width: 6cm;
    height: 6cm;
    top: calc(50% - 3cm);
    left: calc(50% - 3 cm);
    display: none;
}
.active {
    display: block;
}
// Javascript + jQuery
function myAlert() {
    $('#myAlertBox').toggleClass('active');
}
// HTML
<div id="myAlertBox">Hello!</div>