admin管理员组文章数量:1352015
i want to call click event of file input only by jquery, but when i use this below code, it doesn't work:
<!DOCTYPE html>
<html xmlns="">
<head>
<title></title>
<script src="js/jquery.js"></script>
<script>
$(function () {
setTimeout(function () {
$('#file').trigger('click');
}, 2000);
});
</script>
</head>
<body>
<input id="file" name="file" type="file" />
</body>
</html>
NOTE
I want to do this only with jquery or javascript.
i want to call click event of file input only by jquery, but when i use this below code, it doesn't work:
<!DOCTYPE html>
<html xmlns="http://www.w3/1999/xhtml">
<head>
<title></title>
<script src="js/jquery.js"></script>
<script>
$(function () {
setTimeout(function () {
$('#file').trigger('click');
}, 2000);
});
</script>
</head>
<body>
<input id="file" name="file" type="file" />
</body>
</html>
NOTE
I want to do this only with jquery or javascript.
Share Improve this question asked May 12, 2015 at 18:42 Rasool GhafariRasool Ghafari 4,2788 gold badges48 silver badges78 bronze badges 2- possible duplicate of Programmatically trigger "select file" dialog box – technophobia Commented May 12, 2015 at 18:56
- A very important note here regarding triggering the file input programatically: stackoverflow./a/21583865/984275 – technophobia Commented May 12, 2015 at 18:57
1 Answer
Reset to default 9Just do it!
With jQuery:
$('#file').click();
Pure javascript:
var fileInput = document.getElementById('file');
if(fileInput) {
fileInput.click();
}
$(document).ready(function() {
$('#btn').click(function() {
// Will Work!!!!
$('#fileInput').click();
});
// Will not Work
$('#fileInput').click();
});
<script src="https://ajax.googleapis./ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<input type="file" id="fileInput" />
<br/>
<br/>
<button id="btn">Click</button>
Your problem is that I need to call the click event
from a user action. Take a look in the example. The click
called inside the ready
event doesn't work, because is not a user event. But the same code from click
work.
本文标签: javascriptHow to call file input click with jqueryStack Overflow
版权声明:本文标题:javascript - How to call file input click with jquery? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743905226a2559395.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论