BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>BootWiki 教程网</title> <script> function above(){ document.getElementById('myTable').frame="above"; } function below(){ document.getElementById('myTable').frame="below"; } </script> </head> <body> <table border="1" id="myTable"> <tr> <td>cell 1</td> <td>cell 2</td> </tr> <tr> <td>cell 3</td> <td>cell 4</td> </tr> </table> <br> <button onclick="above()" type="button">显示上面的边框</button> <button onclick="below()" type="button">显示底部边框</button> <p><b>Note:</b>frame属性在Internet Explorer 9之前版本不能正常显示。</p> </body> </html>
运行结果