正如我在尝试在事件发生时启动代码的问题一样,在我的情况下,我得到了以下index.html代码:
var v = $('#state input:checkbox').map(function(elem) {
var sThisVal = (this.checked ? $(this).val() : "");
return sThisVal;
}).get();
在这里,我试图在localStorage中放置一个项目来触发index.html的javascript代码:
<html>
<body>
<script>
window.addEventListener('storage', function(event) {
console.log("changed key: " + event.key);
console.log("old value : " + event.newValue);
});
</script>
</body>
</html>
不幸的是,无法获得输出工作吗?