不让别人保存你的网页

来源:互联网 发布:2017淘宝开店卖什么好 编辑:程序博客网 时间:2024/04/30 03:57

页面不想叫别人保存怎么办:
在body间加<noscript><iframe src="*"></iframe></IFRAME></noscript>
//======以前还以为用js代码控制的呢,原来如此!有意思


顺带说说页面内容不想让人任意复制选中就这么做:

<body leftmargin="0" topmargin="0" ondragstart="return false" onselectstart="return false" onselect="document.selection.empty()"
oncopy="document.selection.empty()" onbeforecopy="return false" >