Home > Article > Web Front-end > JS method to dynamically display the upper and lower frames of a table_javascript skills
The example in this article describes the method of dynamically displaying the upper and lower frames of a table using JS. Share it with everyone for your reference. The details are as follows:
<!DOCTYPE html> <html> <head> <script> function aboveFrames() { document.getElementById('myTable').frame="above"; } function belowFrames() { document.getElementById('myTable').frame="below"; } </script> </head> <body> <table id="myTable"> <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 design.