关于回车自动跳转的问题,能不能有选择的跳转??
使用如下的形式,让用户输入数据,为了方便提供按回车跳转,但是想在用户在按钮上回车时不跳转,如何实现?
下面是跳转的脚本:
<script language="vbscript">
<!--
sub document_onkeydown
if window.event.keyCode=13 then
window.event.keyCode=9
end if
end sub
//-->
</script>
<!--
sub document_onkeydown
if window.event.keyCode=13 then
window.event.keyCode=9
end if
end sub
//-->
</script>
上面的代码当然能跳转,但是如何使用户在textbox中按回车跳转,在按钮上按回车可以发送?
可不可以
<script language="vbscript">
<!--
sub document_onkeydown
if oscr.name!='btupdate' and window.event.keyCode=13 then
window.event.keyCode=9
end if
end sub
//-->
</script>
<!--
sub document_onkeydown
if oscr.name!='btupdate' and window.event.keyCode=13 then
window.event.keyCode=9
end if
end sub
//-->
</script>
可是上面的红色代码该如何实现??
看了许多例子,不是很明白,我怎么知道用户点击的是那个按钮呢?大侠指点!
如果这个问题搞明白了,可能对理解asp.net中的_doPostBack(),有帮助,瞎猜的
写到这里想到了一个办法,跳转实际上应该在textbox的onKeyUp事件中处理,早怎么没想到呢
此办法行不通,按回车的时候执行button1_click(),被按钮接收到了,郁闷!!