在问这个问题之前,我试图研究回调 - 但我正在写的东西不起作用。我先定义函数,然后告诉它们运行 onload。getelements() 自己运行良好。
我正在尝试加载元素,然后计算它们,以在数学中使用以显示随机索引之一。
function getelements() {
jQuery('#testimonial').load('http://www.example.com .testimonial');
}
function countelements() {
var elements = jQuery('div.testimonial').length;
console.log(elements);
}
window.onload = function () {
getelements(function () {
countelements();
});
}