drag and drop not working in IE - Javascript, HTML5

后端 未结 4 1732
自闭症患者
自闭症患者 2020-12-19 11:09

I\'ve built this checker-board app which uses HTML5\'s Drag&Drop with javascript. It works great on chrome and firefox, but not on IE9 or IE8. My guess is that the probl

4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-19 11:45

    setData method expect String data type not Number

    setData('text',1)//is wrong
    
    setData('text',''+1)//is correct
    

提交回复
热议问题