jsPanel显示PHP输出

时间:2017-08-02 10:26:02

标签: php jquery jpanel

我正在使用jsPanel创建一个浮动的“面板”窗口,如下所示:

 $.jsPanel({
        headerTitle: 'Some title',
        content: '<p> Hello world! </p>'      
           })

这很好用,但我遇到麻烦的是我希望'内容'包含PHP数据。例如:

     $.jsPanel({
        headerTitle: 'Some title',
        content: '<?php echo "Hello world!"; ?>'      
           })

这不起作用。所以我试过的是:

         $.jsPanel({
        headerTitle: 'Some title',
        contentAjax: {url: 'helloworld.php'}
                   })

没有运气。所以在进一步谷歌之后,我发现了类似的东西:

   $.jsPanel({
        headerTitle: 'Some title',
        load: {url: 'helloworld.php'}
             })

......也没用。

所以我想我的问题是这个 -

  • 如何让PHP代码正确输出到浮动的“jsPanel”窗口?
  • 为什么ajax / load看似相同,这有什么区别?

0 个答案:

没有答案