我正在尝试在 jQuery while 循环完成其设置循环后执行一个功能。循环靠近底部
这是我当前的脚本:
$(document).ready(function() {
$("#radial_container").radmenu({
listClass: 'list', // the list class to look within for items
itemClass: 'item', // the items - NOTE: the HTML inside the item is copied into the menu item
radius: 150, // radius in pixels
animSpeed:400, // animation speed in millis
centerX: 160, // the center x axis offset
centerY: 150, // the center y axis offset
selectEvent: "click", // the select event (click)
activeItemClass: "active",
angleOffset: 185, // in degrees
onSelect: function ($selected) {
$(".radial_div_item").animate({
//opacity: 0.5
}, 0);
$selected.animate({
//opacity: 1
}, 0);
var inner = $selected.html();
var i = 0;
if ($selected.index() > 3) {
while (i < $selected.index()) {
$("#radial_container").radmenu("next");
//Do something once loop finishes
}
} else {
while ($selected.index() > i) {
$("#radial_container").radmenu("prev");
//Do something once loop finishes
}
}
}
});
});
一位朋友建议我做这样的事情,但到目前为止它对我没有用:
var looping = function(callback){
*while loop*
callback();
}
我已经通读了这篇文章,但无法在此处找到解决方案。
我没有包含我的标记,因为它似乎没有必要,但如果需要,我可以发布它。
谢谢大家。