我创建了一个扩展 div,它在加载时隐藏并在使用 javascript 和 jQuery 单击时扩展。我的问题是我需要在每个页面上多次使用此功能(10-30x)。有没有办法使用数组或类似性质的东西调用函数来处理多个 div id(我是新手,我很抱歉),例如,我的一些 div id 将是 eb1、eb2、eb3、eb4。这是我目前在一个 id 上工作的脚本:
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('#eb1').hide();
//hides box at the begining
jQuery("#hide").click(function() {
jQuery('#eb1').fadeOut(300);
//jQuery('#the_box').hide();
});
jQuery("#show").click(function() {
jQuery('#eb1').fadeIn(300);
//jQuery('#the_box').show();
});
});
</script>
任何帮助将不胜感激,甚至是解释的链接。谢谢,特拉维斯