来自onkeypress处理程序的JavaScript“return false”

时间:2011-10-14 22:11:19

标签: javascript

我使用以下方法中的代码来阻止我的键盘,它对我有用。

<asp:textbox id="t1" onkeypress="return false;" />

现在我想为它添加更多内容,而我厌倦了使用额外的代码

来做同样的事情
<script type="text/javascript">
fuction disablekeys()
{
return false;
}
</script>
<asp:textbox id="t1" onkeypress="disablekeys();" />

但是这段代码不起作用。为什么呢?

1 个答案:

答案 0 :(得分:12)

您需要返回disablekeys返回的值:

<asp:textbox id="t1" onkeypress="return disablekeys();" />

您的新onkeypress处理程序当前忽略此值。