jquery val方法
举个例子
<html>
<head>
<script src="http://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
alert($("input").val());
alert($("input").eq(1).val());
});
});
</script>
</head>
<body>
Firstname: <input type="text" name="fname" value="Bill" /><br />
Lastname: <input type="text" name="lname" value="Gates" /><br /><br />
<button>获得第一个文本域的值</button>
</body>
</html>
其中
alert($("input").val());
也可以写成
alert($("input:text").val());
val方法是干嘛的?
获取input标签的value属性的。
有参数吗?
没有的话就是获取属性值,有的话就是修改属性值。
还有其他函数可以做到这个么?
还没发现其他的。
参数可以是函数吗?
可以,只有函数有返回值,也就是(return),那么return的内容就会成为。input输入框里的内容。