我想在输入字段之前添加这段 JavaScript: onchange="readURL(this); 我该怎么做? 必须在 HTM-6ren">
gpt4 book ai didi

javascript - 如何将 JavaScript 添加到输入字段

转载 作者:行者123 更新时间:2023-11-29 22:25:54 27 4
gpt4 key购买 nike

我在 Rails 3.1 中有这个输入字段:

<%=f.file_field :image, :id => "upload"%>

我想在输入字段之前添加这段 JavaScript:

onchange="readURL(this);

我该怎么做?

必须在 HTML 中看到诸如:

<input type="file" onchange="readURL(this); name="post[image]" id="upload">

最佳答案

你在使用 JQuery 吗?

$("#upload").change(function() { 
..
});

是一种方式并且

$("#upload").bind("change", function() {
..
});

是另一个。

JQuery Doc.

更新:

你可以这样写:

<%= f.file_field :image, :id => "upload", :onchange => "readURL(this)" %>

这将为您提供类似于 HTML 的内容:

<input type="file" onchange="readURL(this); return false;" name="post[image]" id="upload">

关于javascript - 如何将 JavaScript 添加到输入字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9384826/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com