我在我的一个项目中实现了便签功能,并且发现了与浏览器兼容性相关的问题。我的代码在 IE8 中无法运行,但在其他浏览器中运行良好。
我得到的错误是:
Message: Object doesn't support this property or method
Line: 45
Char: 3
Code: 0
URI: http://dev.mesocial.co/orange_theme/js/sticky_note_func.js
这些是 40 到 50 之间的行:
var moved = function(note) {
// added by rupesh
// alert(JSON.stringify(lastCreatedNoteId));
var passId = note.id
if(lastCreatedNoteIdForJs.indexOf(note.id) != -1)
passId = lastCreatedNoteId[note.id];
// till here ///////
$.post(SITE_URL+'/dashboard/create-sticky-note/act/moved/sticky_note_id/'+passId+'/pos_x/'+note.pos_x+'/pos_y/'+note.pos_y,
function(data) {
//alert(data);
});
任何有关问题可能的帮助将不胜感激。