我正在构建一个将html加载到iframe中的网站,并允许用户通过父页面更改该html的元素。其中一项功能是图像上传,可将图像添加到iframe中的div。我在iframe中有图像上传按钮,但我想在父页面上获取输入类型='文件',也许是getelementbyid(文件)?
这就是我在Iframe中的含义
$(function () {
$(":file").change(function () {
if (this.files && this.files[0]) {
var reader = new FileReader();
reader.onload = imageIsLoaded;
reader.readAsDataURL(this.files[0]);
}
});
});
function imageIsLoaded(e) {
$('#myImg').attr('src', e.target.result);
};
</script>
</head>
<body contentEditable="false">
<input type='file' />