我在我的网站上使用了这个花哨的小 jQuery 切换开关,效果很好。但是现在我要隐藏一个更大的文本区域,因此我将它包含在另一个 php 文件中,但是当站点打开\刷新时,内容会短暂显示然后隐藏?我是不是做错了什么,或者它根本不能与包含在其中的内容一起使用?
<a href="#" id="toggleMe">Show me?</a>
<div class="content">
<?php include 'includes/test.php'?>
</div>
<script>
jQuery(document).ready(function() {
var par = jQuery('.content');
jQuery(par).hide();
});
jQuery('#toggleMe').click(function() {
jQuery('.content').slideToggle('fast');
return false;
});
</script>