我在Chrome上有一个完美的jquery功能,但它不适用于IE ... 每次我在文本框#form中更改某些内容时,服务器都会获取get AJAX请求,而不是在IE
上$("#form").on('input', function() {
$("#value").val($("#value").val().toUpperCase());
var postdata = {value: $("#value").val()} ;
$.get('/search', postdata, function(data) {
var result = ("Type : " + data['type'] + "<br/>Project name : " + data['project_name'] + "<br/>Project version : " + data['project_version'] + "<br/>Product name : " + data['product_name'] + "<br/>Product version : " + data['product_version'] + "<br/>Lib op : " + data['libop'])
$("#print").html(result) ;
});
});
你有解决方案吗?
谢谢! 最好的问候,
Servietsky
答案 0 :(得分:5)
使用onkeyup事件
$('input').keyup(function(e) {
switch (e.which) {
case 16: break; // Shift
case 17: break; // Ctrl
case 18: break; // Alt
case 27: this.value = ''; break; // Esc: clear entry
case 35: break; // End
case 36: break; // Home
case 37: break; // cursor left
case 38: break; // cursor up
case 39: break; // cursor right
case 40: break; // cursor down
case 78: break; // N (Opera 9.63+ maps the "." from the number key section to the "N" key too!) (See: http://unixpapa.com/js/key.html search for ". Del")
case 110: break; // . number block (Opera 9.63+ maps the "." from the number block to the "N" key (78) !!!)
case 190: break; // .
default:
//add your code here which will execute by default
}
});
对于长篇文章(在此指定所有活动)抱歉