商城后台的简易版:
采用table和iframe实现简易的后台管理系统
实例
实例 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body > <table border="0" cellspacing="1" cellpadding="5" width="960" align="center" > <tr height="60"> <td colspan="2"> <iframe src="inc/top.html" width="100%" height="70" frameborder="0" align="center" scrolling="no"></iframe> </td> </tr> <tr> <td colspan="2"><hr width="960"></td> </tr> <tr> <td> <iframe src="inc/left.html" width="200" height="600" frameborder="0" align="center" scrolling="no" ></iframe> </td> <td> <iframe src="inc/right.html" width="750" height="600" frameborder="0" align="center" scrolling="no" name="right"></iframe> </td> </tr> <tr> <td colspan="2"><hr width="960"></td> </tr> <tr> <td colspan="2"> <iframe src="inc/footer.html" width="100%" height="100" frameborder="0" align="center" scrolling="no"></iframe> </td> </tr> </table> </body> </html> 运行实例 » 点击 "运行实例" 按钮查看在线实例
点击 "运行实例" 按钮查看在线实例