我找到了一个从 javascript 调用 jquery 函数的工作代码。我想在页面加载时做同样的事情。下面是我的代码。
$(".wheel-button").wheelmenu({
trigger: "",
animation: "fly",
animationSpeed: "fast"
});
请帮助我在页面加载时调用带有属性的 wheelmenu() jquery 函数。
我找到了一个从 javascript 调用 jquery 函数的工作代码。我想在页面加载时做同样的事情。下面是我的代码。
$(".wheel-button").wheelmenu({
trigger: "",
animation: "fly",
animationSpeed: "fast"
});
请帮助我在页面加载时调用带有属性的 wheelmenu() jquery 函数。
使用“就绪”事件处理程序。一旦文档完全加载,它就会触发。
$( document ).ready(function() {
$(".wheel-button").wheelmenu({
trigger: "",
animation: "fly",
animationSpeed: "fast"
});
});
请参阅此处的就绪功能:
$(document).ready(function(){
function run(){
$(".wheel-button").wheelmenu({
trigger: "",
animation: "fly",
animationSpeed: "fast"
});
}
run();
});
而已..
试试$(document).ready()short hand
之类的, $( handler )
$(function() {
$(".wheel-button").wheelmenu({
trigger: "",
animation: "fly",
animationSpeed: "fast"
});
});