能说详细点么?   上面的 'img_url' 是图片的地址  如:http://.../pop.gif     谢谢!!!

解决方案 »

  1.   

    建立一个文件,定义 leftmargin="0" topmargin="0"  在把img_url传给这一页就可实现无页边距了,用window.open估计是不行。   如果哪位高手知道办法,小弟万分感谢!
      

  2.   

    window.open("image.htm1","_blank","width=XXX,height=XXX");image.html内容:
    =========
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <title>[欢迎光临Aron-Huafeng网上商城]</title>
    <style type="text/css">BODY{
      background-attachment : fixed;
      margin-top : 0px;
      margin-left : 0px;
      margin-right : 0px;
      margin-bottom : 0px;
      border-width : 0px 0px 0px 0px;
    }
    </style>
    </head>
    <body>
    <img src="图片路径及文件名" width=300 height=300></img>
    </body></html>
    ===========