今天在写个人主页的时候发现后台无法上传图片,然后自己写了一个图片上传,简单记录一下代码。
<div class="panel-heading"><h3 class="panel-title">新增作品</h3></div>';
<form action="upload_img.php" target="post_frame" enctype="multipart/form-data" method="post">
<div class="form-group">
<input type="file" id="file" name="opus" value="" width="200" />
<input style=" height: 40px;width: 45px;" type="submit" value="上传" name="submit" />
<input type="hidden" name="callbackUrl" value="/callback.php" />
<iframe name="post_frame" style="display:none;"> </iframe>
这里需要注意当回调页面返回图片地址到前端页面时,需要iframe标签(这里我们将其隐藏),否则将会找不到要在页面显示的地方
<input type="text" id="cover_img_url" name="cover_img_url" size="120" readonly="readonly" />。
和一般的