需要您的幫助。正如標題所示,我正在嘗試使用PHP變量更改css類。所以基本上我想創建一個迴響一些代碼的循環。但我希望第一個循環中的div類不同 - 它應該被隱藏起來。使用php變量更改css類
下面是我爲解決問題所做的簡化代碼。我不知道錯誤在哪裏。請指教。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style>
.hidden {
visibility:hidden;
}
.visible {
visibility:visible;
}
.firstclass {
color:red;
}
</style>
</head>
<body>
<?php
$case = 4;
$page = "";
$class = "";
if ($page == 0) {
$class = "hidden";
}
else {
$class = "visible";
}
for ($page = 0; $page < $case; $page++) {
echo "<div class = " firstclass $class " >This is page $page <br /></div>";
}
?>
</body>
</html>
嗨,這個作品,謝謝! – 2014-10-11 05:48:25
歡迎您! :) – 2014-10-11 06:02:28