-1

我找到了一个从 javascript 调用 jquery 函数的工作代码。我想在页面加载时做同样的事情。下面是我的代码。

    $(".wheel-button").wheelmenu({
    trigger: "",
    animation: "fly",
    animationSpeed: "fast"
    });

请帮助我在页面加载时调用带有属性的 wheelmenu() jquery 函数。

4

3 回答 3

2

使用“就绪”事件处理程序。一旦文档完全加载,它就会触发。

$( document ).ready(function() {
 $(".wheel-button").wheelmenu({
    trigger: "",
    animation: "fly",
    animationSpeed: "fast"
    });
});

请参阅此处的就绪功能:

http://api.jquery.com/ready/

于 2013-10-29T05:51:08.840 回答
1
$(document).ready(function(){

function run(){

 $(".wheel-button").wheelmenu({
    trigger: "",
    animation: "fly",
    animationSpeed: "fast"
    });
}
run();
});

而已..

于 2013-10-29T05:50:22.457 回答
1

试试$(document).ready()short hand之类的, $( handler )

$(function() {
   $(".wheel-button").wheelmenu({
      trigger: "",
      animation: "fly",
      animationSpeed: "fast"
   });
});
于 2013-10-29T05:52:26.547 回答