Posted in Javascript onMarch 30, 2015
本文实例讲述了JS实现控制表格行文本对齐的方法。分享给大家供大家参考。具体如下:
下面的JS代码可以控制表格内的整行文本向左或者向右对齐
<!DOCTYPE html> <html> <head> <script> function leftAlign() { document.getElementById('header').align="left"; } </script> </head> <body> <table width="100%" border="1"> <tr id="header"> <th>Firstname</th> <th>Lastname</th> </tr> <tr> <td>Peter</td> <td>Griffin</td> </tr> </table> <br> <input type="button" onclick="leftAlign()" value="Left-align table row"/> <p><b>Note:</b> This example does not work in Internet Explorer.</p> </body> </html>
希望本文所述对大家的javascript程序设计有所帮助。
JS实现控制表格行文本对齐的方法
- Author -
欧阳不疯声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@