每次发表文章都要选择“来源”“作者”挺麻烦的,其实我的网站就选的都是一样的!改下! <input name="selwriter" type="button" id="selwriter" value="选择"/> </td> </tr> 改为: <tr> <td width="90"> 文章来源:</td> <td width="240"> <input name="source" type="text" id="source" style="width:160px" value="互联网" size="16"/> <input name="selsource" type="button" id="selsource" value="选择"></td> <td width="90">作 者:</td> <td> <input name="writer" type="text" id="writer" style="width:120px" value="网站管理员"/> <input name="selwriter" type="button" id="selwriter" value="选择"/> </td> </tr> “来源”的默认值就是 <input name="source" type="text" id="source" style="width:160px" value="<?php echo $source; ?>" size="16"/> 中的 value="<?php echo $source; ?>" “作者”的默认值就是 <input name="writer" type="text" id="writer" style="width:120px" value="<?php echo $writer; ?>"/> 中的 value="<?php echo $writer; ?>" |