我正在使用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'}
})
......也没用。
所以我想我的问题是这个 -