-1

我正在尝试使用引导程序而不是 wokring 发出警报。在 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>
4

6 回答 6

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 库,然后才能使用函数,因为 $ 是要初始化的

于 2013-10-21T10:25:10.207 回答
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。

于 2013-10-21T10:29:49.273 回答
1

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

<script src="scripts/jquery.js">
于 2013-10-21T10:24:03.870 回答
1

您忘记了在 bootstrap.js 之前添加到头部的 jQuery:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
于 2013-10-21T10:24:12.073 回答
1
  1. jQuery plugin确保您在代码中导入
  2. 确保jQuery plugin在使用前加载(包装在里面document handler function)。

jQuery验证是否加载的最简单检查是

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

或者

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

演示

于 2013-10-21T10:28:49.777 回答
0

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

通过将所有 js 放在底部,您几乎可以做到这一点。

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

于 2013-10-21T10:25:21.403 回答