我有一个基本网页。顶部有一个带有3个链接的菜单栏。我只想在一个div中更改内容,具体取决于选择的链接。我所知道的只是html和php。如何链接链接以仅更改内容div?
最佳答案
这不是完美的方法,但它会更改“ div”或本例中的“ tr”
<SCRIPT type="text/javascript">
function showoptions()
{
if (something == "show")
{
// Show
document.getElementById("show").style.display = '';
}
else
{
// Hide
document.getElementById("show").style.display = 'none';
}
}
<table border="0" width="100%" id="table1">
<tr>
<td width="144">Show/hide</td>
<td><select name="something" id="tools" onChange="showoptions()">
<option value="show">show</option>
<option value="hide">Hide</option>
</select>
</td>
</tr>
<tr id="show" style="display:none;">
<td><input type="text" name="amount" size="5"></td>
</tr>
<table>
关于javascript - 菜单栏仅在一格内更改内容,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6852327/