抖音小程序webview打开h5中input上传文件accept限制为啥不起作用?
<input accept="application/pdf" type="file" id="fileInput" class="file-input">
网友回复
支持新版的chrome内核webview才支持,抖音的webview内核部分手机机型不支持,可以通过js动态获取上传文件的后缀来判断
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>File Input Example</title>
</head>
<body>
<input type="file" id="fileInput">
<p id="fileInfo"></p>
<script>
document.getElementById('fileInput').addEventListener('change', function(event) {
const file = event.target.files[0];
if (file) {
...点击查看剩余70%


