可以链接图像映射来打开浏览文件控制器吗?

发布于 2024-08-14 12:33:06 字数 55 浏览 6 评论 0原文

我希望用户能够单击我的应用程序选项卡 1 上的图像,该图像将打开文件浏览器以上传照片。这可能吗?

I want the user to be able to click on an image on tab 1 of my app that will open up the file browser to enable a photo to be uploaded. is this possible??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橙幽之幻 2024-08-21 12:33:06

是的。

<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap" />

<map name="planetmap">
    <area shape="rect" coords="0,0,82,126" href="javascript: document.getElementById('files').click()" alt="Sun" />
    <area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury" />
    <area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus" />
</map>

<form>
    <input type="file" id="files">
</form>

当您单击地图的“太阳”区域时,这将加载文件浏览对话框。

或者,参考您的问题正文(没有图像映射)

<script type="text/javascript" language="javascript">
    function showFileBrowser()
    {
        //maybe do something here
        var fb = document.getElementById('files');
        fb.click();
    }
</script>
...
<img src="src.ext" alt="a picture" onclick="showFileBrowser()" />
...
<form action="something" method="post">
    <input type="file" id="files" />
</form>

Yes.

<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap" />

<map name="planetmap">
    <area shape="rect" coords="0,0,82,126" href="javascript: document.getElementById('files').click()" alt="Sun" />
    <area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury" />
    <area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus" />
</map>

<form>
    <input type="file" id="files">
</form>

This will load the file browsing dialog when you click on the "Sun" area of the map.

Or, refering to the body of your question (without an image map)

<script type="text/javascript" language="javascript">
    function showFileBrowser()
    {
        //maybe do something here
        var fb = document.getElementById('files');
        fb.click();
    }
</script>
...
<img src="src.ext" alt="a picture" onclick="showFileBrowser()" />
...
<form action="something" method="post">
    <input type="file" id="files" />
</form>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文