当我加载jQuery Masonry作为我的第一个标签时,一切正常。如果砌体选项卡不是选项卡1,则所有内容都在其自身的一堆中。基于div的选项卡和ajax选项卡都会出现这种情况。
有什么想法吗?提前谢谢。
<script src="<?php bloginfo('stylesheet_directory');?>/js/jquery-ui-1.7.3.custom.min.js"></script>
<script src="<?php bloginfo('stylesheet_directory');?>/js/jquery.masonry.min.js"></script>
<script>
$(function() {
$( "#ui_tabs" ).tabs({
disabled:[1,2],
ajaxOptions: {
error: function( xhr, status, index, anchor ) {
$( anchor.hash ).html(
"Sorry, there was an issue loading the content." );
}
}
});
});
</script>
<script>
$(function(){
$('#conversation').masonry({
// options
itemSelector : '.brick',
columnWidth : 250
});
});
</script>