毕业论文开发语言企业开发JAVA技术.NET技术WEB开发Linux/Unix数据库技术Windows平台移动平台嵌入式论文范文英语论文
您现在的位置: 毕业论文 >> WEB开发 >> 正文

JS如何清除style中的内容

更新时间:2015-12-19:  来源:毕业论文

网站的网页加上了CSS3的防复制user-select代码,且附带有水印。想用查看源文件的方式复制文字,但是有水印的阻挡,会将部分代码连同一起复制了。每次为了删除<style>都要专门开控制台,甚是麻烦。想问问能不能用JavaScript去掉这种复制的限制,最好是将<style>的水印和复制限制一同去掉
<div id="content">
                    <div class="skin-y1">
                        <style>
                            .skin-y1{
                                overflow: hidden;
                                position: relative;
                                -webkit-user-select: none;
                                -moz-user-select: none;
                                -ms-user-select: none;
                                user-select: none;
                            }
 
                            .skin-y1:before {
                                background-image: url(***);
                                content: " ";
                                width: 200%;
                                height: 200%;
                                position: absolute;
                                left: -100%;
                                top: -100%;
                                color: #E4E4E4;
                                z-index: -9999;
                            }
                        </style>
document.body.contentEditable='true';document.designMode='on'; void 0

在浏览器书签栏用下面代码做为地址创建个书签
javascript:void(function(){var sty=document.getElementsByTagName("style")[0];sty.parentNode.removeChild(sty);}());

设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©youerw.com 优尔论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。