我正试图在jQuery中创建一个无限循环。我理解基本语法是
$(document).ready(function(){
function helloworld() {
alert("hello, world!");
helloworld();
}
});
......但这没有任何作用。我该怎么做?谢谢!
答案 0 :(得分:1)
$(document).ready(function(){
function helloworld() {
alert("hello, world!");
helloworld();
}
helloworld();
});
答案 1 :(得分:0)
"|".join(o.name, str(o.age))
使用此功能可以提醒无限时间
答案 2 :(得分:0)
这也是无限功能:D
function myfn() {
console.log("hello, there!");
myfn();
}
myfn();