"上一页"的按钮
注册信息页面
需要一个"上一页"的按钮
我在上面加了一个这样的程序<script language="javascript">
function back()
{
inputForm.licenseNo1.disabled=false;
inputForm.licenseNo2.disabled=false;
inputForm.engineSerialNumber.disabled=false;
inputForm.insuredBirthYear.disabled=false;
inputForm.insuredBirthMonth.disabled=false;
inputForm.insuredBirthDay.disabled=false;
inputForm.action="toubao02.htm";
inputForm.submit();
}
</script>
然后调试时,点击"上一页,到了我要的那个页面的地址http://127.0.0.1/zyweb/chexian/toubao02.htm
可系统提示:无法显示网页
由于网页地址不正确,正在查找的网页无法显示。
--------------------------------------------------------------------------------
但这个地址时正确的,我单独按这个地址打开页面,可以进入,请问是为什么?