如何使用JQuery调用Javascript函数?

时间:2016-02-05 17:50:59

标签: jquery enter

我喜欢这个由jquery脚本调用的javascript函数:

document.location.href = 'http://cse.google.com/cse?cx=009002930969338329916:kta6o_isob0&q=' + escape(document.getElementById('search-box').value)

我也使用Caret作为编码程序,我也使用Chromebook。

1 个答案:

答案 0 :(得分:1)

live for event handling was removed in jQuery 1.9, you are using 1.11.,请尝试使用on。 Chrome工作正常。

这是一个小提琴https://jsfiddle.net/atg5m6ym/359/

同时检查您的密钥是否返回了您需要的13

$(document).ready(function() {
  $('#search-box').on("keyup", function(event) {
    $('#submit').click();
});
});

如果您在keyup上的标签中输入任何内容,您将看到hello world。

if(event.keyCode == '13')适用于enterreturn密钥