0
<script type ="text/jscript" >
         $(function(){
             $('.slide-out-div').tabSlideOut({
                 tabHandle: '.handle1',                              //class of the element that will be your tab
                 pathToTabImage: 'images/todolist.png',          //path to the image for the tab (optionaly can be set using css)

                 imageHeight: '135px',                               //height of tab image
                 imageWidth: '40px',                               //width of tab image    
                 tabLocation: 'right',                               //side of screen where tab lives, top, right, bottom, or left
                 speed: 300,                                        //speed of animation
                 action: 'click',                                   //options: 'click' or 'hover', action to trigger animation
                 topPos: '200px',                                   //position from the top
                 fixedPosition: true                               //options: true makes it stick(fixed position) on scroll
             });
         });

         </script>

vs2010 で開発された Web アプリケーションのマスター ページに上記のコードがあります。Chrome、IEでは問題なく動作します。しかし、mozilla firefox ではまったく機能しません。この問題の原因は何ですか? Firefox の設定タブで JavaScript を有効にしました。助けてください。

ありがとうございます。

4

2 に答える 2

3

問題は、text/jscript が text/javascript と同じではないことです。あなたは後者を望んでいます。

于 2013-01-09T05:02:19.023 に答える
0

type="text/jscript" の代わりに type="text/javascript" を使用する必要があると思います

于 2013-01-09T05:22:12.330 に答える