- UID
- 49936
- 帖子
- 80
- 精华
- 0
- 贡献
- 0
- 推广
- 0
- 有效BUG
- 0
- 注册时间
- 2007-3-18
|
例如页面含有这样的复制JS,我想过滤行不?
- <script>
- document.body.oncopy = function () {
- setTimeout( function () {
- var text = clipboardData.getData("text");
- if (text) {
- text = text + "\r\n网址:"+location.href; clipboardData.setData("text", text);
- }
- }, 100 )
- }
- </script>
-
复制代码 |
|