一个鼠标触发图片的问题,,,,不知道如何解决
图片内无任何js触发,普通的图片
<IMG src= "http://cimg2.163.com/catchpic/3/3F/3FADBAAA38A2242906AB979EE3F9BA26.jpg " border=0>
js根据图片路径自动生成连接,我看了网上有些广告可以实现,但是不知道是怎么实现的,鼠标移动到图片上,,,,出来一个小窗口,,,,显示发送图片到手机,
不知道如何修改成,,,,,图片新窗口中打开,
我在网上找的一个js广告代码??
那位大虾帮忙看看,
这个是js代码的地址
http://u.7town.com/js/mdpic.js?uid=22126&a=&b=&c=&d=&e=&f=
------解决方案-------------------- <html>
<head>
<meta http-equiv= "Content-Type " content= "text/html; charset=GBK ">
<title> </title>
<style type= "text/css ">
img{
cursor:hand;
event:expression(
onclick = function()
{
PublicID = this;
showImg();
}
);
}
</style>
<script type= "text/javascript ">
function showImg()
{
window.open(event.srcElement.src, "_blank ");
}
</script>
</head>
<body>
<IMG src= "http://cimg2.163.com/catchpic/3/3F/3FADBAAA38A2242906AB979EE3F9BA26.jpg " border=0>
</body>
</html>