我在 jQuery 中有 20 个函数,其中一个可以使 div 向下和向上滑动到位。
我的问题是:
如何更改此代码以使其使用命名函数,以便我可以在某处获得更多功能。是否可以将代码缩减为一个带有名称的函数?
$('#top1').click(function() {
$('#book3').slideDown('slow', function() {
// Animation complete.
});
});
$('#luk3').click(function() {
$('#book3').slideUp('slow', function() {
// Animation complete.
});
});
$('#top2').click(function() {
$('#book4').slideDown('slow', function() {
// Animation complete.
});
});
$('#luk4').click(function() {
$('#book4').slideUp('slow', function() {
// Animation complete.
});
});
我还有更多功能,但不会全部写出来。
<div id="top3">
Opdater Password til absb.dk
</div>
<div id="book5">
<h5>Updater adgangskode</h5>
<form action="#" method="post">
<table>
<tr>
<td>Adgangskode</td>
<td><input type="password" name="pass" class="new"></td>
</tr>
<tr>
<td>Adgangskode gentag</td>
<td><input type="password" name="gentag" class="new"></td>
</tr>
<tr>
<td><input type="submit" name="opdater_pass" value="Opdater" class="new upload_boxxen"></td>
<td></td>
</tr>
</table>
<?php
if(isset($_POST["opdater_pass"]))
{
$updater_pass = $mebe->updater_pass();
}
?>
</form>
<div id="luk5">
Luk
</div>
</div>
这是我的一些内容出来的