0

在我的 asp.net 应用程序中,我试图放大 iframe 中的图像,如下所示

<head id="Head1" runat="server">
    <script type="text/javascript">
        function showbigimg(){
            alert('works');
        }
    </script>
</head>
<body>
    <form id="form1" runat="server">

        <%--Other page controls--%>

        <iframe id="htmliframe">                
            <html>
                <head></head>
                <body>
                    <a href="#" onclick="parent.showbigimg();">
                        <img src="../someimage.png"/>
                    </a>
                </body>
            </html>
        </iframe>
    </form>
</body>

当我单击 iframe 中的图像时,我在 IE 中得到此访问被拒绝,而在 FF 中访问属性的权限被拒绝。

我是以正确的方式做的还是有替代的方法。

编辑:当调用 showbigimg 时,我将在父 HTML 中放置一个带有放大尺寸的 img 的 div

4

0 回答 0