我在asp.net中有一个richtextbox我需要在按键上发出警报,请帮我解决这个问题
提前致谢
德维
答案 0 :(得分:0)
为什么您使用richTextBox
使用TextArea
<script language="JavaScript">
<!--
function onKeyDownMyTextArea() {
//Do stuff
alert("you have pressed key.");
}
-->
</script>
<body>
<textarea name="MyTextArea" cols="28" rows="4" onkeydown="onKeyDownMyTextArea();">/textarea>
</body>