bootstrap警报不起作用

时间:2013-10-21 10:22:09

标签: javascript jquery css twitter-bootstrap twitter-bootstrap-2

我正在尝试使用bootstrap发出警报,而不是它。在mozilla firebug控制台中显示

ReferenceError: $ is not defined


$('#openAlert').click(function () {

代码如下。我知道缺少什么。我包括jquery以及bootstrap js文件。

<head>
<title>Twilio Messages (Send message Example)</title>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap.css" rel="stylesheet">
<link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap-responsive.css" rel="stylesheet">
</head>
<body>
    <div class="container">
        <div class="row">
            <div class="span12">
                <h2>Twilio Messages (Send message Example)</h2>
                <form class="form-signin" action="#Twilio" method="post">
                    <div class="row">
                        <div class="span3">
                            Enter Number to send:
                        </div>
                        <div class="span3">
                            <input type="text" name="toNumber" maxlength="10" placeholder="Enter 10 digits number to send" value="+16822037149"/>
                        </div>
                        <div class="span6">
                            <div class="alert">
                                <button type="button" class="close" data-dismiss="alert">&times;</button>
                                The number to send an SMS to. This field accepts formatted and unformatted US numbers, e.g. +14155551212, (415) 555-1212 or 415-555-1212.<hr />
                                To send message from SandBox Account. The Number has to be <a href="https://www.twilio.com/user/account/phone-numbers/verified" target="_blank">verified</a>
                            </div>
                        </div>
                    </div>
                    <div class="row">
                        <div class="span3">
                            Enter Message to send:
                        </div>
                        <div class="span3">
                            <textarea name="body" maxlength="160" placeholder="Enter message to send">
                            </textarea>
                        </div>
                        <div class="span6">
                            <div class="alert">
                                <button type="button" class="close" data-dismiss="alert">&times;</button>
                                The text of the message you want to send, limited to 160 characters.
                            </div>
                        </div>
                    </div>
                    <div class="row">
                        <div class="span3">
                        </div>
                        <div class="span9">
                            <button class="btn" type="submit" id="openAlert">Send</button>
                        </div>
                    </div>
                </form>
            </div>
        </div>


 <div id="le-alert" class="alert alert-warn alert-block fade">
      <button href="#" type="button" class="close">&times;</button>
      <h4>Alert title</h4>
      <p>Roses are red, violets are blue...</p>
    </div>
    </div>
<script type="text/javascript">
$('#openAlert').click(function () {
      $('#le-alert').addClass('in'); // shows alert with Bootstrap CSS3 implem
    });

    $('.close').click(function () {
      $(this).parent().removeClass('in'); // hides alert with Bootstrap CSS3 implem
    });
</script>

</body>
<script type="text/javascript" src="https://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="http://getbootstrap.com/2.3.2/assets/js/bootstrap.js"></script>
</html>

6 个答案:

答案 0 :(得分:3)

将您的脚本包含到<head></head>,然后使用alert()或您正在进行的图书馆电话,

在加载库

之前调用库函数
$('#openAlert').click(function () {
      $('#le-alert').addClass('in'); //
.................
在 *

之后,

应为*

<script type="text/javascript" src="https://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="http://getbootstrap.com/2.3.2/assets/js/bootstrap.js"></script>

请记住: 您需要先包含JS库,然后才能使用$ is初始化函数

答案 1 :(得分:2)

这应该有效:

<div id="le-alert" class="alert alert-warn alert-block fade">
      <button href="#" type="button" class="close">&times;</button>
      <h4>Alert title</h4>
      <p>Roses are red, violets are blue...</p>
    </div>
    </div>

    <script type="text/javascript" src="https://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="http://getbootstrap.com/2.3.2/assets/js/bootstrap.js"></script>
<script type="text/javascript">
$('#openAlert').click(function () {
      $('#le-alert').addClass('in'); // shows alert with Bootstrap CSS3 implem
    });

    $('.close').click(function () {
      $(this).parent().removeClass('in'); // hides alert with Bootstrap CSS3 implem
    });
</script>
</body>
</html>

在调用基于jquery的任何jquery依赖项和自定义函数之前,请确保包含jquery。

答案 2 :(得分:1)

您需要包含对jQuery的脚本引用。

<script src="scripts/jquery.js">

答案 3 :(得分:1)

你忘了在bootstrap.js之前添加jQuery:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>

答案 4 :(得分:1)

  1. 确保您在代码中导入了jQuery plugin
  2. 确保在使用前加载jQuery plugin(包裹在document handler function内)。
  3. 验证jQuery的最简单检查是否已加载

    if (typeof jQuery != 'undefined') {  
        // do operation's here
    }
    

    或者

    if (window.jQuery) {
        // jQuery is available.
    }
    

    DEMO

答案 5 :(得分:0)

您对jQuery文件的引用需要放在使用$ function的脚本之前。

你把所有的j放在底部几乎是正确的。

但是你需要确保在尝试使用它之前引用jQuery文件。