我正在使用范围复制标签中的内容,该标签在Chrome上可返回完美的内容。但是在Firefox中却没有,它在启动时增加了新的一行。
HTML元素:
<p>I am on the wall
I am on the earth
I am on the another earth</p>
代码:
var selection = document.getSelection();
var range = document.createRange();
range.selectNode(element);
//range.selectNodeContents(element);
selection.removeAllRanges();
selection.addRange(range);
document.execCommand('copy');
Chrome浏览器:
I am on the wall
I am on the earth
I am on the another earth
Firefox:
[new line feed in here]
I am on the wall
I am on the earth
I am on the another earth