每次我在文本框中按空格键时,我都想将英文单词更改为印地语,这是一个按键事件,但如何仅适用于空格键。
问问题
434 次
3 回答
1
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('#textboxid').keypress(function(e){
var code = (e.keyCode ? e.keyCode : e.which);
if(code == 32) { //space keycode
//Do language transilation here
}
});
});
</script>
<form id="form1" name="form1">
<input type="text" name="textfield" id="textboxid" />
</form>
于 2012-04-30T11:33:07.133 回答
0
空间是32。所以使用jQuery keypress 事件你可以这样做:
$("textarea").on("keypress", function(e) {
if (e.keyCode == 32) {
// ...
}
});
于 2012-04-30T11:31:08.553 回答
0
对于香草js答案:
document.getElementById( 'textboxid' ).onkeypress = function( e ) {
if ( e.keyCode === 32 ) {
// Translate into Hindi
}
}
于 2012-04-30T11:53:27.467 回答