如何改变警报框?

时间:2015-06-03 19:10:24

标签: javascript jquery html

如何“href”一个可以风格化的警告框?我打算在点击“关于”时得到一个警告框,我的意思是将这个框格式化,修改它的透明度和字体。我几乎没有想过怎么做,我的尝试都失败了,所以我在这里寻求帮助。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento senza titolo</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
  <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
  <script src="//code.jquery.com/jquery-1.10.2.js"></script>
  <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="Style.css" />
<link rel="icon" href="Senza titolo-1.ico" />
</head>

<body>

    <div id="main">

        <div id="logo">
        <a href="index.html">
        <img src="Syrenlogo.png" width="130px" height="130px" />
        </a>
        </div><!--ends logo-->

        <br/>
        <br/>

        <div id="abovenavigation">

        <ul class="container">

            <li><a href="index.html"><h1 class="Home">HOME</h1></a></li><!--
            --><li><h1 class="About">ABOUT</h1></li><!--
            --><li><h1 class="Blog">BLOG</h1></li><!--
            -->

        </ul><!--ends container--> 

        </div><!--ends upper navigation-->

          <br/>
          <br/>

        <div id="me">
        <img src="Gregory1.png" width="300px" height="300px" onclick="this.src='Gregory2.png'" onmouseover="this.src='Gregory2.png'" onmouseout="this.src='Gregory1.png'"/>
        </div>

        <br/>
        <br/>

        <div id="undernavigation">

            <ul class="container">
            <li><a href="https://www.facebook.com/Albus.Severus.Vitanza" target="_blank"><img class="facebook" src="Facebook.png" width="53px" height="50px" onclick="this.src='Facebookhov.png'" onmouseover="this.src='Facebookhov.png'" onmouseout="this.src='Facebook.png'"/></a></li>
            <li><a href="https://twitter.com/Promoetheus" target="_blank"><img class="twitter" src="Twitter.png" width="53px" height="50px" onclick="this.src='Twitterhov.png'" onmouseover="this.src='Twitterhov.png'" onmouseout="this.src='Twitter.png'" /></a></li>
            <li><a href:"mailto:gaaren03@gmail.com"><img class="mailto" src="Mailto.png" width="53px" height="50px" title="gaaren03@gmail.com" onclick="this.src='Mailtohov.png'" onmouseover="this.src='Mailtohov.png'" onmouseout="this.src='Mailto.png'" /></a></li>
            </ul>

        </div><!--ends undernavigation-->

    </div><!--ends main-->

    <div id="search">   
        <a href="#search"><img class="search" src="Search.png" height="50px" width="50px" /></a>
    </div>

</body>
</html>

2 个答案:

答案 0 :(得分:1)

您无法对alert弹出窗口进行样式化(就像您使用JavaScript alert()制作的那样)。

也许你正在寻找的是模态弹出窗口:

答案 1 :(得分:0)

使用bootstrap中的模态对话框。 http://getbootstrap.com/javascript/#modals