//Enter to trigger a click event of a button
< ;input name="" type="text" class="input_search fl" id="searchkey" onkeydown="globelQuery(event);"/>
Search
http://img.blog.csdn.net/20140227095828937?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvYmFpY3Az/font/5a6L5L 2T /fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/SouthEast
//Search enter to achieve click effect//Compatible with IE Firefox and Google
function globelQuery(e) {
if (!e)
e = window.event;
if ((e.keyCode || e.which) == 13) {
$("#globelSearch").click();
}
}