急!急!急!各位大虾请帮忙!(50分)

  • 主题发起人 主题发起人 cmf20
  • 开始时间 开始时间
C

cmf20

Unregistered / Unconfirmed
GUEST, unregistred user!
为什么我在javascript中使用window.confirm()时选择“确认”键之后系统不会自动引导到我指定的页面,请问还需要做些什么?
代码:
function firm()
{
if(window.confirm("确实交费吗?"))
{
location.href="../top.htm";
}
}
 
doucument.URL("../top.htm");
 
回lyywy:还是不行啊!
 
document.URL="../top.htm";
写错了,我试了一下你的也没问题,你调用函数的地方贴出来看看。
 
回lyywy:还是不行!
代码如下:
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html;
charset=gb2312">
<title></title>
</head>
<script language="javascript">
function firm()
{
if(confirm("确实交费吗?"))
{
do
cument.URL="../top.htm";
}
}
</script>
<body background="../images/bg.gif" topmargin="10">
<table border="0" width="70%" align="center" height="41" cellspacing="1" bordercolor="#D20005">
<tr>
<td height="1" align="center" bgcolor="#FFFFFF">张三</td>
<td height="1" align="center" bgcolor="#FFFFFF">105.00</td>
<td height="1" align="center" bgcolor="#FFFFFF">98.00</td>
<td height="1" align="center" bgcolor="#FFFFFF">未收</td>
<td height="1" align="center" bgcolor="#FFFFFF"><a href="#" onclick="firm()">交费</a></td>
</tr>
</table>
</body>
</html>
 
<td height="1" align="center" bgcolor="#FFFFFF"><a href="#" onclick="firm()">
交费</a></td>
改为
<td height="1" align="center" bgcolor="#FFFFFF"><a href="" onclick="firm()">交费</a></td>
把#去掉
 
这么写:
代码:
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html;
charset=gb2312">
<title></title>
</head>
<body background="../images/bg.gif" topmargin="10"> 
<table border="0" width="70%" align="center" height="41" cellspacing="1" bordercolor="#D20005">
    <tr>   
    <td height="1" align="center" bgcolor="#FFFFFF">张三</td>   
    <td height="1" align="center" bgcolor="#FFFFFF">105.00</td>  
    <td height="1" align="center" bgcolor="#FFFFFF">98.00</td>  
    <td height="1" align="center" bgcolor="#FFFFFF">未收</td>  
    <td height="1" align="center" bgcolor="#FFFFFF"><a [red]href="../top.htm" onclick="return confirm('确实交费吗?')">[/red]交费</a></td>  
  </tr>  
 </table>    
</body>  
</html>
 
接受答案了.
 
后退
顶部