1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
| <style type="text/css">
.stylediv {
background-color: #99CCFF;
padding:20px;
margin-top:10px;
}
</style>
<script type="text/javascript">
function tes() {
var divid = document.getElementById('div1');
if (divid.style.height == '300px') {
divid.style.height = '100px';
}
else {
divid.style.height = '300px';
}
}
</script>
<a href="javascript:tes();">testjavas1</a>
<div id="div1" class="stylediv" style="height:300px">
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
<li>10</li>
<li>11</li>
<li>12</li>
<li>13</li>
<li>14</li>
<li>15</li>
<li>16</li>
<li>17</li>
</ul>
</div> |
Partager