我在其中一個項目中實現了便籤功能,並且發現了與瀏覽器兼容性相關的問題。我的代碼在IE8中不起作用,但在其他瀏覽器中可以正常工作。jQuery - 對象不支持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);
});
什麼問題可能是任何幫助將非常感激。
感謝克里斯託弗這對我的作品。 – 2013-03-04 09:21:42
@EktaPatel很高興工作!您應該考慮接受對您最有用的答案,方法是單擊該問題左側的複選標記。你可以閱讀更多關於爲什麼你應該接受一個答案[這裏](http://stackoverflow.com/faq#howtoask)。 – 2013-03-04 10:09:56