Jquery点击新输入

发布于 2024-12-06 01:55:01 字数 222 浏览 0 评论 0原文

嘿,

我在 jQuery 方面遇到了一个小问题,

当我添加新的输入字段时,我无法在其上使用单击功能:

var input = $('<input name="image" type="file"/>');
$(this).append(input);
input.click();

有什么想法吗?

谢谢

Hy,

I have a small problem with jQuery

When I add a new input field, i can't use the click function on it :

var input = $('<input name="image" type="file"/>');
$(this).append(input);
input.click();

Any idea?

Thanks

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

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

发布评论

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

评论(1

信愁 2024-12-13 01:55:01

如果您将点击事件处理程序附加到新的 input,它将正常工作:

var input = $('<input name="image" type="file"/>');
input.click(function() {
   //Do something
});
$(this).append(input);
input.click();

另一方面,如果您希望新的 input 拾取已定义的事件处理程序以前,当您最初附加事件时,您必须使用 live (此示例将单击事件处理程序附加到所有 input 元素,包括稍后添加到 DOM 的内容,例如您的):

$("input").live("click", function() {
   console.log("other clicked"); 
});

If you attach a click event handler to the new input, it will work fine:

var input = $('<input name="image" type="file"/>');
input.click(function() {
   //Do something
});
$(this).append(input);
input.click();

If on the other hand you want the new input to pick up an event handler that's been defined previously, you will have to use live when you attach the event initially (this example attaches a click event handler to all input elements, including ones that get added to the DOM later, like yours):

$("input").live("click", function() {
   console.log("other clicked"); 
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文