JS Mobile 當手機按下go時獨發
jQuery(document).ready(function() {
jQuery('input').keypress(function(e) {
var code = (e.keyCode ? e.keyCode : e.which);
if ((code == 13) || (code == 10))
{
// 在這裡做一些什麼事情
return false;
}
}
});
});
留言
張貼留言