jqmPhp 是一系列 PHP 类,用来帮助创建使用 jQuery Mobile 的 HTML 文件。
示例:
<?php include 'lib/jqmPhp.php'; $j = new jqmPhp(); $j->addBasicPage('', 'Hello World', 'It\'s works!'); echo $j; ?>
生成的 HTML:
<!DOCTYPE html> <html> <head xmlns="http://www.w3.org/1999/xhtml"> <meta charset="UTF-8"></meta> <link type="text/css" rel="stylesheet" href="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.css"> </link> <script type="text/javascript" src="http://code.jquery.com/jquery-1.5.min.js"></script> <script type="text/javascript" src="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.js"> </script> <title></title> </head> <body> <div data-role="page"> <div data-role="header" data-position="inline"> <h1>Hello World</h1> </div> <div data-role="content">It's works!</div> </div> </body> </html>