$(#email).attr('value')
应该给出输入的原始默认值,但使用 jQuery 1.8.1,给出当前值。为什么是这样?这个改变是什么时候做的?我应该采取什么步骤,这样我才能意识到这些变化,而不是在发现事情没有按预期工作后偶然发现它们。谢谢
http://jsfiddle.net/ufrHD/2/使用 jQuery 1.8.1
http://jsfiddle.net/ufrHD/3/使用 jQuery 1.9.1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
<title>Input</title>
<script src="http://code.jquery.com/jquery-1.8.1.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$("#click").click(function() {alert("$('#email').val()="+$('#email').val()+"\n$('#email').attr('value')="+$('#email').attr('value'));});
});
</script>
</head>
<body>
<button id="click">Click</button>
<input type="email" name="name" id="email" value="email@example.com" />
</body>
</html>