「jQuery入門」formでEnterを無効にするサンプル 2018年6月9日JSコード $('#cftForm’).keypress(function(e){ if (e.which == 13) { return false; } }); jQueryPosted by arkgame