====javascript中弹出选择框跳转到其他页面=====
=====javascript中弹出提示框跳转到其他页面=====
=====ASP中直接跳转到其他页面===========
<%
response.redirect "logont.asp"
%>
=====Html中确认后弹出新页面===========
function Del(id)
{
if (confirm("你确定要删除吗?"))
{
window.open("otherfile.asp?ID="+id+"&act=del","top","width=640,height=400")
}
}
=====Html中确认后跳转到其他页面=========
function Del(URL)
{
if (confirm("你确定要删除吗?"))
{
//URL="otherfile.htm"
window.location.href=URL
}
}
阅读(1014) | 评论(0) | 转发(0) |