-5

jQuery Marquee 是否适用于 jquery 1.6.4?这里有信息http://plugins.jquery.com/marquee/该库可以使用 jquery >=1.6.4。这是我的代码:

    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
    <script src="https://raw.github.com/tobia/Pause/master/jquery.pause.js"></script>

    <script src="http://jquery.aamirafridi.com/jquerymarquee/jquery.marquee.js"></script>
    <script>
        $(function(){
            $('#marquee').marquee();
        });
    </script>
    <style type="text/css">
        .marquee {
          width: 300px;
          overflow: hidden;
          border:1px solid #ccc;
        }
    </style>
<body>
    <div id='marquee' class='marquee'>Less text here</div>
</body>
4

1 回答 1

0

所以我为你做了测试

http://jsfiddle.net/aRW9Q/

Error says: "Uncaught TypeError: Object [object Object] has no method 'on' "

答案是否定的,因为on()它是在 jQuery 1.7 中引入的。升级而不是使用过时的 jQuery 版本!

于 2013-03-20T16:25:15.563 回答