我想将图像传递到弹出页面

时间:2021-05-30 11:11:22

标签: javascript html image popup

function openChild()
    {
        window.name = "parentForm";
        window.open("popup.html",
                "crop", "width=570, height=350, resizable = no, scrollbars = no"); 
    }
    
<input type="file" id="imgs" name="imgs" accept="image/jpeg, image/jpg, image/png">
<br><br>
<input type="button" value="Image Crop" onclick="openChild()"><br>

我想将“imgs”传递给 popup.html,并且我想在 popup.html 上使用图像的 src。 我怎样才能通过它?请帮帮我。

0 个答案:

没有答案