Home  >  Article  >  Web Front-end  >  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
WBOYOriginal
2016-05-16 16:06:511020browse

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.

Statement:
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