在输入文件上强制单击事件或打开选择文件窗口

发布于 2024-09-28 18:00:27 字数 602 浏览 2 评论 0原文

我的 HTML 中有一个带有字段的表单。

我想在用户单击其他位置(例如,屏幕其他部分上的图像)时显示文件选择窗口。我想这样做的原因是我有一个包含许多字段的表单,发布到某些操作“x”,并且屏幕其他部分上的文件选择表单提交到操作“y”

<form action="x">
   <input type="text" name="field1">
   <input type="text" name="field2">
   <input type="text" name="field3">
   <img src="select_file.png" onclick="//triggers file selection on other form">
   <input type="text" name="field4">
   <input type="text" name="field5">
</form>

<form action="y">
  <input type="file" name="myfile">
</form>

是否还有其他方法可以做到这一点?

I have a form in my HTML with field.

I'd like to show the file selection window when the user clicks somewhere else (for example, an image on other part of the screen). The reason I want to do this is that I have a form with many fields, posting to some action "x", and the file selection form on other part of screen, submiting to action "y"

<form action="x">
   <input type="text" name="field1">
   <input type="text" name="field2">
   <input type="text" name="field3">
   <img src="select_file.png" onclick="//triggers file selection on other form">
   <input type="text" name="field4">
   <input type="text" name="field5">
</form>

<form action="y">
  <input type="file" name="myfile">
</form>

Is there any other way to do this?

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

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

发布评论

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

评论(1

暗恋未遂 2024-10-05 18:00:27
 $("img").click(function(){
    $("input[name=myfile]").trigger('click');
 });

演示。单击信封图像。

编辑:在每个输入字段上提供 ID 将使代码更具可读性和“良好”。

 $("img").click(function(){
    $("input[name=myfile]").trigger('click');
 });

Demo. Click on the envelope image.

Edit: Giving ID's on the each of input fields will make the code more readable and "good."

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文