预览图片出现错误
<div style="padding-top:10px;">
<asp:FileUpload ID="flBigClassPic" onchange="YuLanImg(ctl00_ContentPlaceHolder1_flBigClassPic);" runat="server" /></div>
<div style="width: 140px; height: 160px; margin-top: 10px; margin-bottom: 10px;">
<img alt="" src="" width="140" height="160" id="bigclassPic" />
</div>
下面是js脚本
function YuLanImg(ctl00_ContentPlaceHolder1_flBigClassPic){
document.getElementById("#bigclassPic").src=ctl00_ContentPlaceHolder1_flBigClassPic.value;
}