ASP 按钮单击事件
我用ASP做一个网页,现在有一个普通的按钮,既不是提交也不是重置,我想单击按钮就能跳转到另一个网页index.asp,应该怎么做?...
我用ASP做一个网页,现在有一个普通的按钮,既不是提交也不是重置,我想单击按钮就能跳转到另一个网页index.asp,应该怎么做?
展开
4个回答
2013-09-03
展开全部
<input type="button" value="直接本地打开" onclick="window.location.href='你要跳转的页面地址';return false;">
<input type="button" value="新建窗口打开" onclick="window.open('你要跳转的页面地址');return false;">
这不是ASP的事,是HTML的事.
<input type="button" value="新建窗口打开" onclick="window.open('你要跳转的页面地址');return false;">
这不是ASP的事,是HTML的事.
2013-09-03
展开全部
<input type="button" onclick="javascript:location.href='index.asp';"></input>
希望能满意~~
希望能满意~~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-09-03
展开全部
onclick="javascript:location.href='index.asp'" 加进入
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<input
type="button"
value="直接本地打开"
onclick="window.location.href='你要跳转的页面地址';return
false;">
<input
type="button"
value="新建窗口打开"
onclick="window.open('你要跳转的页面地址');return
false;">
这不是ASP的事,是HTML的事.
type="button"
value="直接本地打开"
onclick="window.location.href='你要跳转的页面地址';return
false;">
<input
type="button"
value="新建窗口打开"
onclick="window.open('你要跳转的页面地址');return
false;">
这不是ASP的事,是HTML的事.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询