index.html
来自「一个shop代码只实现部分功能。可以供大家参考学习」· HTML 代码 · 共 33 行
HTML
33 行
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>developerWorks - Ajax with DWR</title> <link rel="stylesheet" type="text/css" href="style.css" media="screen"/> <script type='text/javascript' src='/dwr-app/dwr/interface/Catalogue.js'></script> <script type='text/javascript' src='/dwr-app/dwr/interface/Cart.js'></script> <script type='text/javascript' src='/dwr-app/dwr/engine.js'></script> <script type='text/javascript' src='/dwr-app/dwr/util.js'></script> <script type='text/javascript' src='/dwr-app/shopping.js'></script></head><body><h1>Ajax Store using DWR</h1><form id="searchform"> <input id="searchbox"/><button type="submit" id="searchbtn">Search</button></form><div id="cart"> <h3>Your Shopping Cart</h3> <ul id="contents"></ul> Total price: <span id="totalprice"></span></div><div id="catalogue"> <table> <thead> <tr><th>Name</th><th>Description</th><th>Price</th><th></th><!-- Add to Cart buttons --></tr> </thead> <tbody id="items"> </tbody> </table></div></html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?