21

次のエラーが発生します

    Uncaught TypeError: undefined is not a function bootstrap.js:29
(anonymous function) bootstrap.js:29
(anonymous function)

visualforce開発者コンソールの私のページtwitter-bootstrapで。Visualforce

これが完全な視覚力コードです

    <apex:page standardStylesheets="false" showHeader="false" sidebar="false">
    <!-- Begin Default Content REMOVE THIS -->

    <head>
        <apex:stylesheet value="{!URLFOR($Resource.bootstrap, 'bootstrap/css/bootstrap.css')}"
        />
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"
        type="text/javascript"></script>
        <apex:stylesheet value="{!URLFOR($Resource.bootstrap, 'bootstrap/css/bootstrap.min.css')}"
        />
        <apex:includeScript value="{!URLFOR($Resource.bootstrap, 'bootstrap/js/bootstrap.js')}"
        />
        <apex:includeScript value="{!URLFOR($Resource.bootstrap, 'bootstrap/js/bootstrap.min.js')}"
        />

    </head>

    <body>
        <div id="force">
            <div class="input-append" align="center" style="padding-top:20px;">
                <input type="text" name="q" class="span2 search-query" placeholder="Snipp or Tag"
                />
                <button type="submit" class="btn">Search</button>
                <div class="pull-right">
                    <button class="btn btn-primary active"><i class="icon-white icon-plus"></i> A</button>
                    kjhkjdfgdgdfgdfgdfgdfgdgfgdfg
                    <button class="btn btn-primary active"
                    style="margin-right:50px;"><i class="icon-white icon-bullhorn"></i> Fee</button>
                </div> 
            </div>
        </div>
    </body>
</apex:page>

こちらがページへのリンクですjady-developer-edition.ap1.force.com

誰かが間違っているかもしれないことに光を当てることができますか?

4

2 に答える 2

38

ブートストラップjs-fileを含める前に、jqueryを含める必要があります。

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script type="text/javascript" src="/resource/1358914798000/bootstrap/bootstrap/js/bootstrap.js"></script>

bootstrap.jsとbootstrap.min.jsの両方は必要ないことに注意してください

于 2013-01-23T13:38:29.287 に答える
1

bootstrap.jsこれは、以前に含めた場合に発生する可能性がありますjquery.js。したがって、jQuery前に含めるようにしてくださいbootstrap

他にも確認することがあります。

また、もう1つの考えられるケースは、ページにjQueryの複数のインスタンスが存在する可能性があることです。したがって、jQueryの重複バージョンを検索し、存在する場合はそれらを削除します。

詳細については、以下のリンクを参照してください。

他のライブラリとの競合の回避

于 2015-08-14T13:36:54.713 に答える