gpt4 book ai didi

javascript - 页面更改后触发输入文件在 Ionic 4 中单击

转载 作者:技术小花猫 更新时间:2023-10-29 12:53:15 25 4
gpt4 key购买 nike

我想在 Ionic 4 中触发/打开来自另一个页面的文件输入。

在第 1 页我有一个按钮去模式,在页面模式我想自动触发 <input file>对话框

组件

ionViewWillEnter() {
document.getElementById('file').click(); // Tried with this one 1st, this only works in Internet Explorer / Edge
this.fileInput.nativeElement.click(); // And also this with @ViewChild
}

HTML

<input type="file" name="file" #file id="file" (change)="fileChange($event)" required>

最佳答案

这是我用来触发对 <input> 元素的点击的代码:

@ViewChild("file") fileInput: ElementRef;

triggerClick() {
let event = new MouseEvent('click', {bubbles: true});
this.renderer.invokeElementMethod(this.fileInput.nativeElement, 'dispatchEvent', [event]);
}

关于javascript - 页面更改后触发输入文件在 Ionic 4 中单击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48826364/

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