如何使用 php 在 easyui 布局中制作 easyui 面板
How to make easyui panel in easyui layout with php
在我的项目中,我使用easyui。
一开始easyui-layout cenDiv有默认内容。
然后我想使用 corAnnouncement 按钮通过 oat.php 从服务器数据库中获取内容。
cenDiv 的默认内容将替换为来自 oat.php 的面板内容。
但不幸的是,它工作失败。
这是js代码:
function corpAnn()
{
var oaAnn="tp";
$.ajax({
dataType:'html',
type:"POST",
url:"oat.php",
data: {oaAnn:oaAnn},
success:function(data)
{
$('#cenDiv').html(data);
}
});
}
这是html代码:
<a href="javascript:void(0)" class="easyui-linkbutton" onclick="corpAnn()">corAnnouncement</a><br />
<div id="cenDiv" class="easyui-layout" style="position:static;height:100%" data-options="region:'center',title:''">
......
</div>
这是oat.php代码:
if(isset($_POST['oaAnn']))
{
......
echo '<div class="easyui-panel" closed="true" title="Panel Footer" style="width:700px;height:200px;" data-options="footer:'#ft'">';
echo '<table border=1px cellspacing=0 align="center" size="100%">';
......
}
我发现
data-options="footer:'#ft'";
是错误的,因为echo有单引号。
我试过:
data-options=footer:'"#ft"' ;
和
data-options=footer:"#ft";
但他们的工作失败了。谁能帮我?
echo '<div class="easyui-panel" closed="true" title="Panel Footer" style="width:700px;height:200px;" data-options="footer:\'#ft\'">';
忘记逃跑了character.Maybe累了
在我的项目中,我使用easyui。
一开始easyui-layout cenDiv有默认内容。
然后我想使用 corAnnouncement 按钮通过 oat.php 从服务器数据库中获取内容。
cenDiv 的默认内容将替换为来自 oat.php 的面板内容。
但不幸的是,它工作失败。
这是js代码:
function corpAnn()
{
var oaAnn="tp";
$.ajax({
dataType:'html',
type:"POST",
url:"oat.php",
data: {oaAnn:oaAnn},
success:function(data)
{
$('#cenDiv').html(data);
}
});
}
这是html代码:
<a href="javascript:void(0)" class="easyui-linkbutton" onclick="corpAnn()">corAnnouncement</a><br />
<div id="cenDiv" class="easyui-layout" style="position:static;height:100%" data-options="region:'center',title:''">
......
</div>
这是oat.php代码:
if(isset($_POST['oaAnn']))
{
......
echo '<div class="easyui-panel" closed="true" title="Panel Footer" style="width:700px;height:200px;" data-options="footer:'#ft'">';
echo '<table border=1px cellspacing=0 align="center" size="100%">';
......
}
我发现
data-options="footer:'#ft'";
是错误的,因为echo有单引号。
我试过:
data-options=footer:'"#ft"' ;
和
data-options=footer:"#ft";
但他们的工作失败了。谁能帮我?
echo '<div class="easyui-panel" closed="true" title="Panel Footer" style="width:700px;height:200px;" data-options="footer:\'#ft\'">';
忘记逃跑了character.Maybe累了