我有这个脚本用于查看pic的预览,直到上传
<script>
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e)
{
jQuery('#upfield_0')
.attr('src', e.target.result)
.width(150)
.height(150);
};
reader.readAsDataURL(input.files[0]);
}
}
</script>
HTML代码就是这样:
<input type='file' onchange="readURL(this);" />
<img id="upfield_0" src="#" alt="your image" />
这完全可以购买我不需要使用 readURL(this),我需要发送输入文件的脚本ID用于工作,我不知道我该怎么做
在脚本代码中,您可以这样:
if(input.files&amp;&amp; input.files [0])
我需要将此更改为输入文件的ID,对于发送ID和工作,并且不使用“此内部功能”,它可以做到这一点,如何,因为我不知道如何改变这个功能
我想要这样的东西:
<input type='file' onchange="readURL('ID Inside here');" />
感谢您的帮助,问候