快速的jQuery插件和PHP表格生成器 Watajax
- 授权协议: Apache
- 开发语言: PHP JavaScript
- 操作系统: 跨平台
- 软件首页: http://code.google.com/p/watajax/
软件介绍
Watajax 是一个PHP和jQuery结合起来用来快速生成网页表格数据的解决方案。
示例代码:
PHP:
<?php
// Connect to the database first if you plan on using the Sql version of Watajax.
require_once("lib/Watajax.class.php");
$Watajax = new WatajaxSql();
$Watajax->columns = array(
"id" => array("name" => "#", "sort_type" => "numeric", "hide" => true),
"firstname" => array("name" => "First name", "transform" => '<img src="'.URI.'/images/icons/vcard.png" valign="absmiddle" /> !firstname'),
"lastname" => array("name" => "Last name"),
"email" => array("name" => "E-mail adress", "transform" => '<a target="_blank" rel="nofollow" href="show_reciptient.php?id=!id">!email</a>'),
"tools" => array("name" => "", "virtual" => true, "transform" => '<a target="_blank" rel="nofollow" href="edit.php?id=!id">edit</a>'));
$Watajax->run();
?>
jQuery:
<script type="text/javascript">
$(document).ready(function() {
$("#watajax_table").watajax({ajax_connector:"ajax.php", table_id: "contacts"});
})
</script>
《数据结构》算法实现及解析
高一凡 / 西安电子科技大学出版社 / 2002-10-1 / 35.0
《数据结构算法实现及解析》配有光盘,光盘中包括书中所有程序及用标准C语言改写的程序。所有程序均在计算机上运行通过。《数据结构算法实现及解析》适用于使用教科书的大中专学生和自学者。书中的基本操作函数也可供从事计算机工程与应用工作的科技人员参考和采用。一起来看看 《《数据结构》算法实现及解析》 这本书的介绍吧!
