关于多栏目调用,4.7测试通过 将楼主的提供的部分代码改为 <div id="loginform"> <table border="0" cellpadding="0" cellspacing="0" width="500"> <form name=login method=post action="http://localhost/e/enews/index.php"> <input type=hidden name=enews value=login> <input type=hidden name=prtype value=1> <tr> <td height="23" align="center"> <div align="left">用户名 <input name="username" type="text" size="8"> 密码 <input name="password" type="password" size="8"> <select name="lifetime" id="lifetime"> <option value="0">不保存</option> <option value="3600">一小时</option> <option value="86400">一天</option> <option value="2592000">一个月</option> <option value="315360000">永久</option> </select> <input type="submit" name="Submit" value="登陆"> <input type="button" name="Submit2" value="注册" onclick="window.open('http://localhost/e/member/register');"> </div></td> </tr> </form> </table> </div> <script language="JavaScript">CheckLogin();</script> 粗体部分为修改的内容,加入了网站的绝对地址. 然后放到公共变量[!--temp.header--]里,修改网站里的info.php文件,将其中的所有相对路径改为绝对路径,例如:"e/member/cp" target="_parent">改为"http://localhost/e/member/cp" target="_parent">后保存,后台刷新数据即可实现多栏目调用
|