如果文本位于显示位置之外,有没有办法说服浏览器复制仅在屏幕上显示的文字,当用户使用ctrl-a选择文本或选择全部时。在下面的示例中,我不想复制绝对定位div的文本。
<html>
<body>
<div style="position:absolute;top:30;left:-300">This should not be copied</div>
<div>Only this should be copied</div>
</body>
</html>
更多信息:
答案 0 :(得分:0)
为什么不做display: none;
而不是向左移动?
<html>
<body>
<div style="display: none;">This should not be copied</div>
<div>Only this should be copied</div>
</body>
</html>
我认为没有必要将其从屏幕上移开。
答案 1 :(得分:0)
用户可以随时使用firebug来复制他们想要的任何内容。