我将 div 设为可编辑。当我试图解析 div 的文本时,我需要做下面的正则表达式。
innerDOM = "<div style="cursor: text;">I had downloaded all the material from the Intern,<br>You will find</div><div style="cursor: text;"> </div><div style="cursor: text;">dfvdfvdvdfvdfvdvdvdf</div><div style="cursor: text;"> </div><div style="cursor: text;">dfvdfvdvdfvdfvdfvdfvd</div>"
innerDOM.replace(/<div style="cursor: text">/g, "<br>").replace(/<\/div>/g, "");
以上正则表达式在 Firefox 和 chrome 中效果很好。但不是在 IE 中。我应该做哪些改变?
请参阅此FIDDLE以更好地理解...