hack hack wrote:
ý em là có 1 hình ảnh ko cho bấm chuột phải vào hình đó để save về máy tính được . giả dụ như thế ý các bác hiểu ý em ko ?
Để không cho bấm chuột phải vào một bức ảnh, bạn cho oncontextmenu="return false;" vào trong tag img, cụ thể:
<img oncontextmenu='return false;' border='0' src='http://Linhảnh'>
Hoặc làm thêm đoạn java sau vào giữa <head> và </head>
Code:
<SCRIPT LANGUAGE="JavaScript">
function right(e) {
var msg = "No Right click on this image";
if (navigator.appName == 'Netscape' && e.which == 3) {
alert(msg);
return false;
}
if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
alert(msg);
return false;
}
else return true;
}
function protect_image()
{
if(document.images)
{
for(i=0;i<document.images.length;i++)
{
document.images[i].onmousedown = right;
document.images[i].onmouseup = right;
}
}
}
</SCRIPT>
Sau đó thêm onLoad="protect_image()" vào trong tag <body>
Code:
<body onLoad="protect_image()">