This article describes the method of dynamically displaying frames on and off tables in JS. Share it for your reference. The details are as follows:
<!DOCTYPE html> <html> <head> <script> function aboveFrames() { ('myTable').frame="above"; } function belowFrames() { ('myTable').frame="below"; } </script> </head> <body> <table > <tr> <td>100</td> <td>200</td> </tr> <tr> <td>300</td> <td>400</td> </tr> </table> <br> <input type="button" onclick="aboveFrames()" value="Show above frames"> <input type="button" onclick="belowFrames()" value="Show below frames"> </body> </html>
I hope this article will be helpful to everyone's JavaScript programming.