下面的代码可以在Chrome和Firefox中使用,但不适用于Internet Explorer。当我运行html ...选择一个文件...然后点击按钮...第二个"输入类型=文件"应该出现选择相同的文件。这种情况发生在Chrome和Firefox中,但不是在IE中...在IE中第二个"输入类型=文件"是空的。
有谁知道如何让它在IE中运行?
<!DOCTYPE html>
<html>
<head>
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<script>
$(document).ready(function() {
$('#btn').click(function(){
var newElement = $('#file1').clone();
newElement.appendTo($("#div1"));
})
});
</script>
</head>
<body>
<div id="div1">
<input type="file" id="file1">
</div>
<button id="btn">button</button>
</body>
</html>