自定义浏览按钮 绑定本地路径

  作者:chrispy

<inputname=""type="file"id="fil"/><inputtype="text"class="fileInput"style="background:#f00;"/><script> $(function(){ varstr=''; $('#fil').c

<input name="" type="file" id="fil"/>

 <input type="text" class="fileInput" style="background:#f00;"  />

<script>

    $(function(){ 

        var str='';

        $('#fil').change(function(){

            str=$(this).val(); 

            var arr=str.split('\');//注split可以用字符或字符串分割 

            var my=arr[arr.length-1];//这就是要取得的图片名称 

            $('.fileInput').val(my)

        })

    })    

</script>


有用  |  无用

猜你喜欢