部分html代码
jq代码
$(function(){
var imgurl=[];
function createfile(){
$('#upp').append("");
}
function showimg(url){
var img='
';
$('#imglist').append(img);
}
function addfile(){
showimg($(this).val());
$(this).hide();
createfile();
$('.upfile').bind('change',addfile);
}
$('.upfile').bind('change',addfile);
})
Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
目前我在内部项目中是这样使用的