当前位置: 代码迷 >> Web前端 >> 文件下传按钮样式
  详细解决方案

文件下传按钮样式

热度:175   发布时间:2012-09-15 19:09:28.0
文件上传按钮样式
一种比较好的文件上传按钮样式定义
直接看例子:
<script>
        $(function(){
		$("#button2").click(function(e){
			$("#button1").click();
		});
		$("#button1").change(function(e){
			console.log(22);
		});
	});
</script>
<input type="file" id="button1" value="button1"/>
<a href="#" id="button2" targetto="input#button1">button2</a>
  相关解决方案