如何添加样式表来确认框? [英] How to add style sheet to confirm box?

查看:99
本文介绍了如何添加样式表来确认框?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

 < button type =submitclass =btn btn-default btn-smonclick =return confirm('Are you sure?')> 
< span class =glyphicon glyphicon-trash>< / span>
< / button>

我想附上< div class =box box-solid box-success> ...< / div> 代码到我的确认框中。我尝试了几种方法,但没有成功。我使用Laravel 5和一个Blade模板来完成这个代码。

这个问题是不同的,因为我用来编写larave 5 php框架。我使用了刀片模板格式。所以,我用这个语法。

 < p id ='buttons'> 
{!! Form :: submit('Update',['class'=>'btn btn-primary','onclick'=>'return confirm(Are you sure?)'])!!}& nbsp& ; & nbsp& nbsp& nbsp
{!! Form :: button('Cancel',['class'=>'btn btn-default'])!!}

< / p>


解决方案

HTML:

b $ b

 < button type =submitclass =btn btn-default btn-smonclick =return confirm('Are you sure?')> 
< span class =glyphicon glyphicon-trash>< / span>
< / button>

CSS:

  #modalContainer {
background-color:rgba(0,0,0,0.3);
位置:绝对;
宽度:100%;
身高:100%;
top:0px;
left:0px;
z-index:10000;
background-image:url(tp.png); / * MSIE要求阻止对较低z索引元素的操作* /
}

#alertBox {
position:relative;
width:300px;
min-height:100px;
margin-top:50px;
border:1px solid#666;
background-color:#fff;
背景重复:不重复;
background-position:20px 30px;
}

#modalContainer> #alertBox {
position:fixed;
}

#alertBox h1 {
margin:0;
字体:加粗0.9em verdana,arial;
背景颜色:#3073BB;
颜色:#FFF;
border-bottom:1px solid#000;
padding:2px 0 2px 5px;
}

#alertBox p {
字体:0.7em verdana,arial;
height:50px;
padding-left:5px;
margin-left:55px;
}

#alertBox #closeBtn {
display:block;
职位:亲属;
margin:5px auto;
padding:7px;
border:0无;
width:70px;
字体:0.7em verdana,arial;
text-transform:大写;
text-align:center;
颜色:#FFF;
背景颜色:#357EBD;
border-radius:3px;
text-decoration:none;
}

/ *无关风格* /

#m容器{
position:relative;
width:600px;
margin:auto;
padding:5px;
border-top:2px solid#000;
border-bottom:2px solid#000;
字体:0.7em verdana,arial;
}

h1,h2 {
margin:0;
padding:4px;
字体:bold 1.5em verdana;
border-bottom:1px solid#000;
}

代码{
font-size:1.2em;
颜色:#069;
}

#credits {
position:relative;
margin:25px auto 0px auto;
width:350px;
字体:0.7em verdana;
border-top:1px solid#000;
border-bottom:1px solid#000;
height:90px;
padding-top:4px;
}

#credits img {
float:left;
margin:5px 10px 5px 0px;
border:1px solid#000000;
width:80px;
height:79px;
}

.important {
background-color:#F5FCC8;
padding:2px;
}

代码跨度{
颜色:绿色;

JAVASCRIPT:

  var ALERT_TITLE =Oops!; 
var ALERT_BUTTON_TEXT =好的;

if(document.getElementById){
window.confirm = function(txt){
createCustomConfirm(txt);
}
}

函数createCustomConfirm(txt){
d = document;

if(d.getElementById(modalContainer))return;

mObj = d.getElementsByTagName(body)[0] .appendChild(d.createElement(div));
mObj.id =modalContainer;
mObj.style.height = d.documentElement.scrollHeight +px;

confirmObj = mObj.appendChild(d.createElement(div));
confirmObj.id =alertBox;
if(d.all&&!window.opera)confirmObj.style.top = document.documentElement.scrollTop +px;
confirmObj.style.left =(d.documentElement.scrollWidth - confirmObj.offsetWidth)/ 2 +px;
confirmObj.style.visiblity =visible;

h1 = confirmObj.appendChild(d.createElement(h1));
h1.appendChild(d.createTextNode(ALERT_TITLE));

msg = confirmObj.appendChild(d.createElement(p));
//msg.appendChild(d.createTextNode(txt));
msg.innerHTML = txt;

btn = confirmObj.appendChild(d.createElement(a));
btn.id =closeBtn;
btn.appendChild(d.createTextNode(ALERT_BUTTON_TEXT));
btn.href =#;
btn.focus();
btn.onclick = function(){removeCustomConfirm(); return false; }

confirmObj.style.display =block;


$ b function removeCustomConfirm(){
document.getElementsByTagName(body)[0] .removeChild(document.getElementById(modalContainer));
}


<button type="submit" class="btn btn-default btn-sm" onclick="return confirm('Are you sure?')"> 
   <span class="glyphicon glyphicon-trash"></span> 
</button>

I want to attach this <div class="box box-solid box-success">...</div> code to my confirm box. I try several ways but not success. I do this code using Laravel 5 and a Blade template.

plz, this question is deferent , because i used to code larave 5 php framework.I used blade template format. so , i used like this syntax .

 <p id='buttons'>
            {!! Form::submit('Update', ['class' => 'btn btn-primary','onclick'=>'return confirm("Are you sure?")']) !!} &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp 
            {!! Form::button('Cancel', ['class' => 'btn btn-default']) !!}

        </p>

解决方案

HTML:

<button type="submit" class="btn btn-default btn-sm" onclick="return confirm('Are you sure?')"> 
   <span class="glyphicon glyphicon-trash"></span> 
</button>

CSS:

#modalContainer {
    background-color:rgba(0, 0, 0, 0.3);
    position:absolute;
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    z-index:10000;
    background-image:url(tp.png); /* required by MSIE to prevent actions on lower z-index elements */
}

#alertBox {
    position:relative;
    width:300px;
    min-height:100px;
    margin-top:50px;
    border:1px solid #666;
    background-color:#fff;
    background-repeat:no-repeat;
    background-position:20px 30px;
}

#modalContainer > #alertBox {
    position:fixed;
}

#alertBox h1 {
    margin:0;
    font:bold 0.9em verdana,arial;
    background-color:#3073BB;
    color:#FFF;
    border-bottom:1px solid #000;
    padding:2px 0 2px 5px;
}

#alertBox p {
    font:0.7em verdana,arial;
    height:50px;
    padding-left:5px;
    margin-left:55px;
}

#alertBox #closeBtn {
    display:block;
    position:relative;
    margin:5px auto;
    padding:7px;
    border:0 none;
    width:70px;
    font:0.7em verdana,arial;
    text-transform:uppercase;
    text-align:center;
    color:#FFF;
    background-color:#357EBD;
    border-radius: 3px;
    text-decoration:none;
}

/* unrelated styles */

#mContainer {
    position:relative;
    width:600px;
    margin:auto;
    padding:5px;
    border-top:2px solid #000;
    border-bottom:2px solid #000;
    font:0.7em verdana,arial;
}

h1,h2 {
    margin:0;
    padding:4px;
    font:bold 1.5em verdana;
    border-bottom:1px solid #000;
}

code {
    font-size:1.2em;
    color:#069;
}

#credits {
    position:relative;
    margin:25px auto 0px auto;
    width:350px; 
    font:0.7em verdana;
    border-top:1px solid #000;
    border-bottom:1px solid #000;
    height:90px;
    padding-top:4px;
}

#credits img {
    float:left;
    margin:5px 10px 5px 0px;
    border:1px solid #000000;
    width:80px;
    height:79px;
}

.important {
    background-color:#F5FCC8;
    padding:2px;
}

code span {
    color:green;
}

JAVASCRIPT:

var ALERT_TITLE = "Oops!";
var ALERT_BUTTON_TEXT = "Ok";

if(document.getElementById) {
    window.confirm = function(txt) {
        createCustomConfirm(txt);
    }
}

function createCustomConfirm(txt) {
    d = document;

    if(d.getElementById("modalContainer")) return;

    mObj = d.getElementsByTagName("body")[0].appendChild(d.createElement("div"));
    mObj.id = "modalContainer";
    mObj.style.height = d.documentElement.scrollHeight + "px";

    confirmObj = mObj.appendChild(d.createElement("div"));
    confirmObj.id = "alertBox";
    if(d.all && !window.opera) confirmObj.style.top = document.documentElement.scrollTop + "px";
    confirmObj.style.left = (d.documentElement.scrollWidth - confirmObj.offsetWidth)/2 + "px";
    confirmObj.style.visiblity="visible";

    h1 = confirmObj.appendChild(d.createElement("h1"));
    h1.appendChild(d.createTextNode(ALERT_TITLE));

    msg = confirmObj.appendChild(d.createElement("p"));
    //msg.appendChild(d.createTextNode(txt));
    msg.innerHTML = txt;

    btn = confirmObj.appendChild(d.createElement("a"));
    btn.id = "closeBtn";
    btn.appendChild(d.createTextNode(ALERT_BUTTON_TEXT));
    btn.href = "#";
    btn.focus();
    btn.onclick = function() { removeCustomConfirm();return false; }

    confirmObj.style.display = "block";

}

function removeCustomConfirm() {
    document.getElementsByTagName("body")[0].removeChild(document.getElementById("modalContainer"));
}

这篇关于如何添加样式表来确认框?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆