我的问题是,默认情况下如何不在页面上显示表单?例如,我有一个带有选项的代理,问题是,我不想默认显示选项,但我想有一个指向选项表单的链接。如果您不明白我的意思,这是我正在处理的页面:带选项的代理。
另外,这是我目前在页面上的代码:
<form action="includes/process.php?action=update" method="post" onsubmit="return updateLocation(this);" class="form">
<input type="text" name="u" id="input" size="40" class="textbox">
<input type="submit" value="Go" class="button"> [<a style="cursor:pointer;" onclick="document.getElementById('options').style.display=(document.getElementById('options').style.display=='none'?'':'none')">options</a>]
<ul id="options">
<?php foreach ($toShow as $option) echo '<li><input type="checkbox" name="'.$option['name'].'" id="'.$option['name'].'"'.$option['checked'].'><label for="'.$option['name'].'" class="tooltip" onmouseover="tooltip(\''.$option['escaped_desc'].'\')" onmouseout="exit();">'.$option['title'].'</label></li>';?>
</ul>
<br style="clear: both;">
</form>
<div class="navigation">
<!--[glype:error]-->
<?php ## Display error messge if applicable
if ( isset($_SESSION['msg']) ) {
echo '<div id="error">',$_SESSION['msg'],'</div>';
unset($_SESSION['msg']);
} ?>
编辑:另外,有什么方法可以将复选框与文本对齐?