$("#txt_image").on('change',function(){
console.log('on change');
if (this.files && this.files[0] ) {
const reader = new FileReader();
reader.onload = function(e){
$("#book-image-preview").attr('src',e.target.result);
}
reader.readAsDataURL(this.files[0]);
}
});
Check Also
@wordpress/create-block 创建多个block框架教程
如果只转移的话带有packag …