<script type="text/javascript">
function $(id) {
return document.getElementById(id);
}
function disabled(o) {
//禁止函数....
var div = document.body.appendChild(document.createElement("div"));
with (div.style) {
position = "absolute";
backgroundColor = "#FFFFFF";
width = o.offsetWidth;
height = o.offsetHeight;
left = o.offsetLeft;
top = o.offsetTop;
opacity = "0";
filter = "alpha(opacity:0)";
}
}
window.onload = function () {
disabled($("cszd_img"));
}
</script>
<img id="cszd_img" src='First.bmp' disabled style='cursor:hand;' onclick='alert("aa")'>