我頁面上的幾個隱藏的div像這樣顯示隱藏的div節上if語句
<div class="form" id="scheduler" style="display: none;">
<div class="form" id="test" style="display: none;">
<div class="form" id="super" style="display: none;">
我想一個JScript可以稱之爲展示基於標準的這些隱藏的div像這樣
<?php
if ($_GET['id'] == 'scheduler') {
call jscript function (show div id:scheduler in this case)
}
else if ($_GET['id'] == 'test') {
call jscript function (show div id:test in this case)
}
else if ($_GET['id'] == 'super') {
call jscript function (show div id:super in this case)
}
?>
謝謝。
回聲的各個功能。這應該夠了。如果您分享了這些功能,也許我們可以提供更多幫助。 – Shef