Home > Web Front-end > JS Tutorial > JS method to dynamically display the upper and lower frames of a table_javascript skills

JS method to dynamically display the upper and lower frames of a table_javascript skills

WBOY
Release: 2016-05-16 16:06:51
Original
1045 people have browsed it

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>
Copy after login

I hope this article will be helpful to everyone’s JavaScript programming design.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template