Alim_(I)
Эксперт
Дата регистрации:
26.04.2011 14:55:07
Сообщений: 119
HTML файл
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=windows-1251">
<script src="javascriptFunc.js' type="text/javascript"></script>
<title></title>
</head>
<body>
Увеличить / уменьшить ячейку:
<br>
<br>
<input type="button" style="width: 70;" onclick="plus100();" value="100">
<br>
<input type="button" style="width: 70;" onclick="plus90();" value="90">
<br>
<input type="button" style="width: 70;" onclick="plus80();" value="80">
<br>
<input type="button" style="width: 70;" onclick="plus70();" value="70">
<br>
<input type="button" style="width: 70;" onclick="plus60();" value="60">
<br>
<input type="button" style="width: 70;" onclick="plus50();" value="50">
<br>
<input type="button" style="width: 70;" onclick="plus40();" value="40">
<br>
<input type="button" style="width: 70;" onclick="plus30();" value="30">
<br>
<input type="button" style="width: 70;" onclick="plus20();" value="20">
<br>
<input type="button" style="width: 70;" onclick="plus10();" value="10">
<br>
<br>
<table style="background-color: green; width: 100; height: 100;" border="2" id="table">
<tr>
<td></td>
</tr>
</table>
</body>
</html>
javascriptFunc.js
function plus100(); {
document.getElementById("table".style.width = "100";
document.getElementById("table".style.height = "100";
}
function plus90(); {
document.getElementById("table".style.width = "90";
document.getElementById("table".style.height = "90";
}
function plus80(); {
document.getElementById("table".style.width = "80";
document.getElementById("table".style.height = "80";
}
function plus70(); {
document.getElementById("table".style.width = "70";
document.getElementById("table".style.height = "70";
}
function plus60(); {
document.getElementById("table".style.width = "60";
document.getElementById("table".style.height = "60";
}
function plus50(); {
document.getElementById("table".style.width = "50";
document.getElementById("table".style.height = "50";
}
function plus40(); {
document.getElementById("table".style.width = "40";
document.getElementById("table".style.height = "40";
}
function plus30(); {
document.getElementById("table".style.width = "30";
document.getElementById("table".style.height = "30";
}
function plus20(); {
document.getElementById("table".style.width = "20";
document.getElementById("table".style.height = "20";
}
function plus10(); {
document.getElementById("table".style.width = "10";
document.getElementById("table".style.height = "10";
}
Мне нужно чтобы он при нажатии кнопки (
<input type="button">
) уменьшал/убольшал таблицу (с id table).
А вместо этого при нажатии на кнопку (
<input type="button">
) он ничего не делает.
Можете помочь?