运行 ❯
获取您
的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> table, td { border: 1px solid black; border-collapse: separate; } </style> </head> <body> <table id="myTable" style="empty-cells:hide;"> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td></td> </tr> </table> <br> <button type="button" onclick="myFunction()">Return the emptyCells property</button> <script> function myFunction() { alert(document.getElementById("myTable").style.emptyCells); } </script> </body> </html>