1

在我的應用程序jsTree創建JsTree的節點使用類型指定的圖標不使用插件的IE

$('#categoryTree').jstree({ 
    plugins: ['themes', 'html_data', 'contextmenu', 'ui', 'types'], 
    contextmenu: { 
     items: ContextMenuItems 
    }, 
    ui: { 
     select_limit: 0 
    }, 
    themes: { 
     theme: 'classic' 
    }, 
    types: { 
     type_attr: 'nodetype', 
     types: { 
      category: { 
       icon: { image: baseUrl + '/Images/folder.png' } 
      }, 

      testcase: { 
       icon: { image: baseUrl + '/Images/hlp.png' } 
      } 
     } 
    } 
}); 

一切工作在FF和Chrome太好了,我有以下,類別節點使用指定的folder.png和測試用例節點使用hlp.png作爲它們的圖標。

但是,Internet Explorer似乎並不尊重這一點,它對所有節點使用默認圖標。任何人有任何想法如何強制IE使用類型的正確圖標,而不是使用默認圖標?

回答

相關問題