日期:2014-05-16 浏览次数:20373 次
[code=text][/code]
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>子页面禁止选中/复制,不兼容firefox</title>
</head>
<body>
<script type="text/javascript" >
function test() {
window.frames["aaa"].document.oncontextmenu = new Function("return false;");
window.frames["aaa"].document.onselectstart = new Function("event.returnValue=false");
}
</script>
<iframe id="aaa" name="aaa" src="b.htm" height="800" width="800"></iframe>
<input type=button onclick="test()" value="aaa" />
</body>
<script type="text/javascript">
</script>
</html>
[code=text][/code]
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>子页面禁止选中/复制,不兼容firefox</title>
</head>
<body>
<script type="text/javascript" >
function test() {
document.getElementById("aaa").src = "b.htm";
window.frames["aaa"].document.oncontextmenu = new Function("return false;");
window.frames["aaa"].document.onselectstart = new Function("event.returnValue=false");
}
</script>
<iframe id="aaa" name="aaa" src="b.htm" height="800" width="800"></iframe>
<input type=button onclick="test()" value="aaa" />
</body>
<script type="text/javascript">
</script>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>子页面禁止选中/复制,不兼容firefox</title>
</head>
<body>
<script type="text/javascript" >
function addEvent(){
var doc=document.getElementById("aaa").contentWindow.document;
doc.oncontextmenu = function(){parent.document.title=new Date().getTime();return false}
doc.onselectstart = function(){