习惯受伤
根本就没有.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>