™•¤°»Vick«°¤•™
2 cái ni -
1 cho IE, 1 cho cả IE lẫn FF -
[You must be registered and logged in to see this image.]
thay mấy pro kêu là
- ét vô bên dưới cùng của header hoặc Footer.
[You must be registered and logged in to see this image.] tác dụng trên IE
[You must be registered and logged in to see this image.] tác dụng trên FF và IE
1 cho IE, 1 cho cả IE lẫn FF -
[You must be registered and logged in to see this image.]
thay mấy pro kêu là
- ét vô bên dưới cùng của header hoặc Footer.
[You must be registered and logged in to see this image.] tác dụng trên IE
- Code:
<script language=Javascript1.1>
function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert('Nội dung thông báo!');
return false;
}
return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
</script>
[You must be registered and logged in to see this image.] tác dụng trên FF và IE
- Code:
<script language='Javascript'>
var
msg="Tác vụ click phải bị vô hiệu!";
function disableIE() {if
(document.all) {alert(msg);return false;}
}
function disableNS(e) {
if
(document.layers||(document.getElementById&&!document.all)) {
if
(e.which==2||e.which==2) {alert(msg);return false;}
}
}
if
(document.layers) {
document.captureEvents(Event.MOUSEDOWN);document.onmousedown=disableNS;
}
else {
document.onmouseup=disableNS;document.oncontextmenu=disableIE;
}
document.oncontextmenu=new
Function("alert(msg);return false")
</script>