したがって、これに関する多くの記事がオンラインにありますが、すべて同じことであり、すべてが機能しません
私がやりたいことは、無限スクロールが実行された後に JS 関数を実行することです。
実行しようとすると、構文エラー SyntaxError: missing : after property id, function(arrayOfNewElems) { が発生します
<script>
if ( ! navigator.userAgent.match(/(iPod|iPhone|iPad|Android)/)) {
var infinite_scroll = {
loading: {
img: "<?php echo get_template_directory_uri(); ?>/images/ajax-loader.gif",
msgText: "<?php _e( 'Loading the next set of products...', 'woothemes' ); ?>",
finishedMsg: "<?php _e( 'All products loaded.', 'woothemes' ); ?>"
}, function(arrayOfNewElems) {
$('img')equalHeights();
});,
"nextSelector":".pagination a.next",
"navSelector":".pagination",
"itemSelector":"#main .product",
"contentSelector":"#main ul.products"
};
jQuery( infinite_scroll.contentSelector ).infinitescroll( infinite_scroll );
}
</script>
関数 equalHeights(); を実行する方法を知っている人はいますか?