$(#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>