这是我在主题中使用的代码,我希望能够单击一次,并且单击后最新链接会拉起而不是回调。
<script>
jQuery( "li#menu-item-28 a" ).click(function() {
jQuery( "div#the-latest.bg div.container" ).slideToggle( "slide" );
});
</script>
这是我在主题中使用的代码,我希望能够单击一次,并且单击后最新链接会拉起而不是回调。
<script>
jQuery( "li#menu-item-28 a" ).click(function() {
jQuery( "div#the-latest.bg div.container" ).slideToggle( "slide" );
});
</script>
您可以为此使用实时 绑定。检查代码。这可能会有所帮助。
<script>
jQuery( "li#menu-item-28 a" ).live('click',function() {
jQuery( "div#the-latest.bg div.container" ).slideToggle( "slide" );
});
</script>
我不确定我是否理解您的问题,但请尝试:
<script>
jQuery( "li#menu-item-28 a" ).live("click", function(event) {
event.preventDefault();
jQuery( "div#the-latest.bg div.container" ).slideToggle( "slide" );
});
</script>
event.preventDefault() 防止单击链接时发生的默认事件。