欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用jquery获取上传文件名并在input表单中显示

程序员文章站 2022-05-24 11:08:55
...

实现代码:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
	
		<script src="bootstrap-3.3.7-dist/jquery/jquery-3.5.1.min.js"></script>
	</head>
	<body>
		<input type="file" id="file" style="display: none;" onchange="getName()"/>
		<input type="text" id="showFileName"/>
		<button type="button">浏览</button>
		<!-- //调用方法 -->
		<script type="text/javascript">
			$('button').click(function(){
				$('#file').click();
			});
			function getName(){
				var file = $('#file')[0].files[0];
				var fileName = file.name;
				
				$('#showFileName').attr("value",fileName);
			} 
		</script>
	</body>
</html>

效果展示

使用jquery获取上传文件名并在input表单中显示
使用jquery获取上传文件名并在input表单中显示
使用jquery获取上传文件名并在input表单中显示