js 불 여우 에서 로 컬 경로 추출

666 단어 js
/*           */

function getFullPath(obj)

{

    if(obj)

    {

        //ie

        if (window.navigator.userAgent.indexOf("MSIE")>=1)

        {

            obj.select();

            return document.selection.createRange().text;

        }

        //firefox

        else if(window.navigator.userAgent.indexOf("Firefox")>=1)

        {

            if(obj.files)

            {

                //return obj.files.item(0).getAsDataURL();

                return window.URL.createObjectURL(obj.files[0]);

            }

            return obj.value;

        }

        return obj.value;

    }

}

좋은 웹페이지 즐겨찾기