Storage.prototype.setObj = function(key, obj) {
return this.setItem(key, JSON.stringify(obj))
^-----Error in this line: Uncaught TypeError: Accessing selectionDirection on an input element that cannot have a selection
}
var selected = jQuery('input:checkbox.mychkbox:checked').each(function() {
return this.id;
});
sessionStorage.setObj("savedCollSearch",selected);
我正在使用 jQuery 1.7.2 和 Chrome 22。此错误在 Firefox 16 中显示为未捕获的异常。在 SO 和 Google 中搜索无济于事,我不知道如何解决此问题。
我 100% 确定 jQuery 已正确加载。