当我使用 jQuery 添加一个时,无论何时刷新页面<input>
,新的值都会被复制到页面的预先存在的输入中!input
在 Firefox 中运行此页面:
<!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>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="Scripts/jquery-1.8.0.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
$('<input />').attr({ 'type': 'text' }).val(2).appendTo($('#cart'));
})
</script>
</head>
<body>
<div id="cart">
</div>
<input type="text" id="afe" />
</body>
</html>
首次加载时,原始input
文件为空白,input
jQuery 添加的值为2
.
现在按F5。两个输入都将显示值2
!
这是怎么回事?