<img  style="cursor:hand;" onclick="javascript:window.open('pict_window1.htm','','scrollbars=yes,status=no,toolbar=no,menubar=no,location=no')"  border="0" src="xxx.jpg"  alt="点击小图查看大图!">

解决方案 »

  1.   

    如果要最大话加上  fullscreen=4 这个参数,数字可以再调整一下,不知道你要怎要的效果
    例如
    <img  style="cursor:hand;" onclick="javascript:window.open('pict_window1.htm','','scrollbars=yes,status=no,toolbar=no,menubar=no,location=no, fullscreen=4')"  border="0" src="xxx.jpg"  alt="点击小图查看大图!">
      

  2.   

    <a href="javascript:var a=window.open('pict_window1.htm','_blank','scrollbars=yes,status=no,toolbar=no,menubar=no,location=no');" >
            <img border="0" src="xxx.jpg"  alt="点击小图查看大图!">      
        </a>
      

  3.   

    fullscreen=4根本就没用啊,我改了数值还是没什么反应的!
      

  4.   

    <html><head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312"></head><body>href=javascript有返回结果的情况<a href="javascript:f1();" >
            <img border="0" src="xxx.jpg"  alt="点击小图查看大图!">               
        </a>
        
        <br>
    href=javascript无返回结果的情况<a href="javascript:f2();" >
            <img border="0" src="xxx.jpg"  alt="点击小图查看大图!">          
        </a></body></html>
    <script>
    function f1()
    {
    alert("有返回结果");
    return "有返回结果";
    }function f2()
    {
    alert("无返回结果");}
    </script>