【发布时间】:2015-05-17 14:50:20
【问题描述】:
这是我的表格
<form action="#" enctype="multipart/form-data" method="post" name="..." id="formPhoto" class="fmp">
<input type="file" name="pho" id="photo" class="inph" accept="image/*">
<button type="submit" id="subFormPhoto" class="spp">press here</button>
</form>
这是我的代码 JS
<script type="text/javascript">
var inputPhoto= document.getElementById('photo');
inputPhoto.onchange=function(){var photo= this.value; photo.onload=function(){alert(this.width+' '+this.height);};};
</script>
我的问题是没有可视化alert(this.width+' '+this.height);。
好像没有加载photo
【问题讨论】:
-
id 为“insPhotoAlert”的元素在哪里。你的问题能再清楚一点吗?
-
对不起,我调整了。
-
我要查看inputPhoto的宽高
标签: javascript controls