我正在用 PHP 编写一个站点,并且我编写了一个交换其内容标签的索引页面。当我在按钮中包含 default.php 时,没有设置样式。
Jquery UI 在站点的其他任何地方都可以正常工作,但是按钮和图标不起作用。
这是切换页面的索引代码
<?php
include_once 'config.php';
session_start();
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" >
<title><?php echo $siteName; ?></title>
<link href="css/themes/<?php echo $theme; ?>" rel="stylesheet" type="text/css"/>
<link href="<?php echo $jqCSS;?>" rel="stylesheet" type="text/css"/>
<script src="<?php echo $jsCommon;?>"></script>
<script src="<?php echo $jqJS;?>"></script>
<script src="<?php echo $jqJSUI;?>"></script>
</head>
<body>
<div class="header">
<?php include 'menu.php';?>
</div>
<div class="content" id="main_content"><br/><br/>
<?php
$page = $_SESSION['currentpage'];
echo $page;
switch ($page)
{
case 'messaging':
include 'controls/shared/messaging/messaging.php';
break;
default:
include 'pages/default.php';
break;
}
?>
</div>
<div class="footer">
</div>
<div id="myLogin" title="Login"></div>
<div id="myForgotPass" title="Forgot Password"></div>
<div id="myReg" title="Register"></div>
这是检查后加载的 Default.php
<?php
session_start();
$_SESSION['currentpage'] = 'default';
?>
<br/><br/>
<h1>Default</h1>
<button id="button">Test Button</button>
这是我用来确定这是一个按钮的javascript:
$('#button').button();
当我查看 firebug 中的代码时,它显示它在内容类下。我可以使用内容类设置按钮的样式,但是我希望它使用来自 jquery ui 的主题。
谢谢。