BackBone 和sessionStorage
我正在使用 Backbone 和 JQuery 在 MVC3 项目中创建输入表单。我使用 Backbone 创建输入框,并且在 Jquery 中使用 sessionStorage 函数来折叠和展开菜单中的项目。
如果我尝试使用 window.sessionStorage.key(i),则 Backbone 创建的 html 会消失,但仅限于IE:
for (var i = 0; i <= window.sessionStorage.length; i++) {
key = window.sessionStorage.key(i);
if (key != null) {
//Unfold menu item on key;
}
}
我可以在 Chrome 中执行此操作。
菜单项的更新功能在 IE 中有效...
function updateSession(element) {
if (window.sessionStorage[element.id] == element.id) {
alert("Just delete the item");
window.sessionStorage.removeItem(element.id);
}
else {
window.sessionStorage.setItem(element.id, element.id);
alert("Just set the item");
}
}
为什么会发生这种情况?我尝试了 Jquery.noConflict..
I am using Backbone and JQuery to create an input form in a MVC3-project. I use Backbone to create inputsboxes, and I am using sessionStorage function in Jquery to fold and unfold items within a menu..
If I try to use the window.sessionStorage.key(i), the html created by Backbone disapper, but only in IE:
for (var i = 0; i <= window.sessionStorage.length; i++) {
key = window.sessionStorage.key(i);
if (key != null) {
//Unfold menu item on key;
}
}
I can make this work in Chrome..
The update-function for menu items works in IE...
function updateSession(element) {
if (window.sessionStorage[element.id] == element.id) {
alert("Just delete the item");
window.sessionStorage.removeItem(element.id);
}
else {
window.sessionStorage.setItem(element.id, element.id);
alert("Just set the item");
}
}
Why is this happening? I tried the Jquery.noConflict..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 http://caniuse.com/#namevalue-storage
Check out http://caniuse.com/#namevalue-storage