query.html 410 Bytes

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