<?php
$sql = "select pic from e_user where uid = '1dff5b51f862e6d181577e3ca34248be'";
$js = get_js_object($sql);
Header( "Content-type: image/png");
echo $js->pic;
echo '<p><img src="../php/testlist.php" width="150"></p>';
?>
<table class="easyui-dategrid" url="../php/testlist.php">
<thead>
<tr>
<th field="pic" width="120">图片</th>
</tr>
</thead>
</table>
如何修改?
------解决思路----------------------
图片数据流只能用 img 标记接收
<img src="../php/testlist.php" width="150">
即由 ../php/testlist.php 输出
------解决思路----------------------
不知道你的弹框具体是如何实现