$(function() {
$('#searchFrom input').bind('keyup', function (event) {/* 增加回车提交功能 */
if (event.keyCode == '13') {
cx();
}
});
}
转载于:https://www.cnblogs.com/CESC4/p/7716460.html
增加回车提交功能
$(function() {
$('#searchFrom input').bind('keyup', function (event) {/* 增加回车提交功能 */
if (event.keyCode == '13') {
cx();
}
});
}
转载于:https://www.cnblogs.com/CESC4/p/7716460.html

被折叠的 条评论
为什么被折叠?