猿问

有时候这个.length跟.val()好像,有点混淆,不知道什么情况下.length后面要不要加上();

qq_小明_22
浏览 1313回答 1
1回答

习惯受伤

根本就没有.length()这个方法,首先理解其意思:.length 求数组长度,求元素个数。.val() 是jquery获取元素value值得函数。如:<input id="textForHello" type="text" value="Hello" /> <input id="textForWorld" type="text" value="World" /> <script>     var inputLength = $("input").length;     var helloValue = $("#textForHello").val();     var worldValue = $("#textForWorld").val();     console.log("input 个数:" + inputLength);     console.log("textForHello 值:" + textForHello);     console.log("textForWorld值:" + textForWorld); </script>
随时随地看视频慕课网APP

相关分类

JQuery
我要回答