Php,jQuery和html结合在一起

时间:2015-04-14 16:01:07

标签: php jquery image hosting lightbox

  <script>
    $(".boxer").boxer({
        formatter: formatCaptions
        }); 
    function formatCaptions($target) {
        return '<p><span></span><?php the_field('price')?>' + $target.attr("title") + '</p>';
    }
  </script>

我正在使用jQuery灯箱。事实上,在本地主机中它运作良好,但现在我在网上它并没有显示我需要的东西。该网站为www.automediarent.it(转到第34页; Autoveicoli&#34;&#34; Le mie Auto&#34;)  我希望有人可以帮助我。灯箱是Formstone的灯箱

1 个答案:

答案 0 :(得分:0)

您似乎没有打印PHP函数的结果。试试这个:

  <script>
    $(".boxer").boxer({
        formatter: formatCaptions
    }); 
    function formatCaptions($target) {
        return '<p><span></span><?php echo the_field('price'); ?>' + $target.attr("title") + '</p>';
    }
  </script>