下面我就為大家分享一篇JS取得input[file]的值並顯示在頁面的實作方法,具有很好的參考價值,希望對大家有幫助。
實例如下所示:
#$(document).on('change', '.photo-box .file', function () { //alert($(this).val()); function getObjectURL(file) { var url = null; if (window.createObjectURL != undefined) { // basic url = window.createObjectURL(file); } else if (window.URL != undefined) { // mozilla(firefox) url = window.URL.createObjectURL(file); } else if (window.webkitURL != undefined) { // webkit or chrome url = window.webkitURL.createObjectURL(file); } return url; } var objUrl = getObjectURL(this.files[0]); console.log("objUrl = " + objUrl); var html = '<p class="photo-box"><img src="' + objUrl + '" alt=""><p class="photo-btn"><p>删除</p></p></p>'; $(this).parent().parent().append(html); })
上面是我整理給大家的,希望未來會對大家有幫助。
相關文章:
##
以上是JS如何取得input[file]的值並顯示在頁面的方法? (圖文教學)的詳細內容。更多資訊請關注PHP中文網其他相關文章!