本文主要為大家分享一篇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中文網其他相關文章!