我被分配了一项任务,为遗留页面开发一个小应用程序,以替换现在的 Flash 应用程序。
我已经使用 requirejs、knockout 和 jquery 开发了这个应用程序,但似乎在使用我拥有的设置时,应用程序中某些文本区域上所有已注册的更改事件都未注册。这个行为可以用这个简单的 html 文件来说明:
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" type="text/javascript"></script>
<script>
$(document).ready(function() {
$("#container .input").change(function() {
console.log($(this).val());
});
console.log($("#input").data("events"));
});
</script>
<script src="http://requirejs.org/docs/release/2.1.6/comments/require.js"></script>
<script>
require.config({
paths: {
jquery: "http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min",
},
shim: {
jquery: {
exports: "$"
}
}
});
require(
["jquery"],
function($) {
console.log("starting");
console.log($("#input").data("events"));
}
);
</script>
</head>
<body>
<div id="container">
<input type="text" id="input" class="input" />
</div>
</body>
此代码将在第一次调用时报告附加到输入元素的事件,但在第二次调用时未定义。我需要附加事件保持原位,因为有一些遗留代码会自动保存我更新的(隐藏)输入字段的内容。
这里发生了什么?