JavaScript DOMを使用してテーブルのパディングを変更するにはどうすればよいですか?
テーブルのパディングを変更するには、DOM paddingを使用します 財産。次のコードを実行して、JavaScriptのパディングを変更してみてください-
例
<!DOCTYPE html> <html> <head> <script> function paddingFunc(x) { document.getElementById(x).style.padding = "20px"; } </script> </head> <body> <table style = "border:2px dashed black" id = "newtable"> <tr> <td>One</td> <td>Two</td> </tr> <tr> <td>Three</td> <td>Four</td> </tr> <tr> <td>Five</td> <td>Six</td> </tr> </table> <p> <input type = "button" onclick = "paddingFunc('newtable')" value = "Change Table Padding"> </p> </body> </html>
-
MySQLテーブルの名前を変更するにはどうすればよいですか?
RENAMEコマンドは、MySQLテーブルの名前を変更するために使用されます。その構文は次のとおりです- RENAME table old_tablename to new_tablename2; 例 以下の例では、テーブルの名前を「testing」から「test」に変更しています。 mysql> RENAME table testing to test; Query OK, 0 rows affected (0.17 sec) mysql> Select * from testing; ERROR 1146 (42S02): Table 'query.testing&
-
MySQLテーブルのデフォルトの文字セットを変更するにはどうすればよいですか?
MySQLテーブルのデフォルトの文字セットを変更するには、次の構文を使用できます。構文は次のとおりです- alter table yourTableName convert to character set yourCharsetName; テーブルを作成し、上記の構文を適用してデフォルトの文字セットを変更してみましょう。テーブルを作成するためのクエリ- mysql> create table CharsetDemo -> ( -> Id int, -> Name varchar(200), -> Age int -> );