我需要使用while循环,我想知道jQuery中是否有任何语法更改
在JavaScript中
var text = ""; var i = 0; while (i < 10) { text += "<br>The number is " + i; i++; } document.getElementById("demo").innerHTML = text;
字符串如何在jquery中执行循环?
mrzz3bfm1#
在while loop的情况下,JavaScript和jquery之间没有区别
while loop
$(function () { var text = ""; var i = 0; while (i < 10) { text += "<br>The number is " + i; i++; } $("#demo").html(text); });
个字符
af7jpaap2#
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script type="text/javescript"> $(document).ready(function () { var text = ""; var i = 0; while (i < 10) { text += "<br>The number is " + i; i++; }}); </script>
字符串
edqdpe6u3#
在jQuery中也是一样。jQuery中有一个流行的loop method,但它不适用于您的示例。$.each()允许您循环遍历数组和类似数组的对象。
$.each()
m4pnthwp4#
JavaScript和jquery的while循环没有区别。
$(document).ready(function () { var text = ""; var i = 0; while (i < 10) { text += "<br>The number is " + i; i++; }});
字符串这会有用的
4条答案
按热度按时间mrzz3bfm1#
在
while loop
的情况下,JavaScript和jquery之间没有区别个字符
af7jpaap2#
字符串
edqdpe6u3#
在jQuery中也是一样。
jQuery中有一个流行的loop method,但它不适用于您的示例。
$.each()
允许您循环遍历数组和类似数组的对象。m4pnthwp4#
JavaScript和jquery的while循环没有区别。
字符串
这会有用的