query.html 344 Bytes
<table class="table table-hover">
    <tbody>
        {loop $ds $item}
        <tr>
            <td title="{$item['description']}">{$item['title']}</td>
            <td style="width:80px;"><a href="javascript:;" onclick='select_entry({php echo json_encode($item['entry']);})'>添加</a></td>
        </tr>
        {/loop}
    </tbody>
</table>