我们如何在PHP中为Jquery-ui对话框窗口创建自定义样式?

时间:2011-10-19 05:23:19

标签: php jquery css jquery-ui drupal-6

我有一个PHP页面,结果表中包含一个打开弹出框的链接。之前我使用过JavaScript。但我想隐藏地址栏,所以这不能用JavaScript完成(希望如此)。所以我尝试使用jQuery-ui。

<head>
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/themes/base/jquery-ui.css">

<style type="text/css">
    #data-specs {
        border-collapse: collapse;
    }
    #data-specs th,
    #data-specs td {
        padding: 0px;
        border: 0px;
    }
    .loading {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -8px;
        margin-left: -8px;
    }
    </style>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/jquery-ui.min.js"></script>

<script type="text/javascript">
        $(document).ready(function() {
            var $loading = $('<img src="loading.gif" alt="loading" class="loading">');

            $('#data-specs a').each(function() {
                var $dialog = $('<div></div>')
                    .append($loading.clone());
                var $link = $(this).one('click', function() {
                    $dialog
                        .load($link.attr('href'))
                        .dialog({
                            title: 'Dialog Title',
                            width: 500,
                            height: 300
                        });

                    $link.click(function() {
                        $dialog.dialog('open');

                        return false;
                    });

                    return false;
                });
            });
        });
    </script>
</head>

我的表部分代码是这样的:

print "<table width='875' id='data-specs' align='center'>";
        while($row = mysql_fetch_array($result))
         {
              print "<tr height='18'>";
              print "<td width=200 align=left style='padding-left:10px'>" . $row['Country'] . "</td>";
              print "<td width=70 align=center>" . $row['MidEstimate'] . "</td>";
              print "<td width=70 align=center>" . $row['LowEstimate'] . "</td>";
              print "<td width=70 align=center>" . $row['HighEstimate'] . "</td>";
              print "<td width=118 align=center>" . $row['Source'] . "</td>";
              print "<td width=110 align=center>" . $row['StudyLocation'] . "</td>";
              print "<td width=89 align=center>" . $row['Relevance'] . "</td>";
              print "<td width=89 align=center>" . $row['Quality'] . "</td>";

print "<td width=61><a style='color:#E46D0A;' href='popupboxD.php?SId=$vv'>".$row['Info']."</a></td>";
              print "</tr>";

         }
        }

if(empty($result)){

print "<table width='875' align='center'>";
print "<tr height='1'><td colspan='9'><font color='#000080'><b>Does not have information on this particular selection.</b></font></td></tr>";
print "</table>";

现在问题是它的一切运作良好。但是当我点击链接时,jQuery对话框打开,我父窗口的样式(css)也在变化?我希望样式仅应用于对话框窗口我还想更改对话框窗口的外观吗?我怎样才能做到这一点?请帮助我。

更新

我在drupal 6中使用此代码,但是当我单击该链接时,弹出窗口不会作为模式对话框窗口打开。 IT在父窗口中完全打开?如何在drupal 6中使用相同的代码来构建jQuery UI?请帮帮我。

2 个答案:

答案 0 :(得分:1)

要制作自己的jQuery ui样式(主题),请在jquery ui themeroller上进行更改。之后你可以下载它(在取消选择所有组件之前),如果它是zip解压缩它,保存服务器上的文件并替换你的href属性:

<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/themes/base/jquery-ui.css">

但是这会改变这个页面的所有jQuery ui元素。

=== UPDATE ===

要使对话框模态化,您必须添加modal option

.dialog({
    ...
    modal: true
})

另请参阅我更新的jsfiddle

答案 1 :(得分:1)

通常,PHP与JQuery,Javascript,HTML控件和所有这些东西无关。

PHP仅仅是一个文本处理器。 作业确定要输出的 。 PHP不会为你做这件事。

完成文本后,您可以使用PHP将其打印出来。它也不是什么大问题 - PHP字符串有简单的格式化规则。

但是,输出大量文本。你可以逃脱PHP:

<?
//some PHP
?>
<table width='875' align='center'>
  <tr height='1'>
    <td colspan='9'>
      <font color='#000080'>
        <b>Does not have information on this particular selection.</b>
      </font>
    </td>
  </tr>
</table>
<?
//PHP again
?>