function sally_disable_enter_contact_7( ) {
?>
<script type="text/javascript">
// Only run this snippet on the form ID 1114
jQuery( '#wpcf7-f1114-p1110-o1' ).on( 'keypress keydown keyup', function(e) {
if (e.which== 13) {
e.preventDefault();
}
});
</script>
<?php
}
add_action( 'wp_footer', 'sally_disable_enter_contact_7', 30 );
1条答案
按热度按时间juzqafwq1#
您可以使用以下行来禁用特定表单上的enter。
将此代码添加到
functions.php
。用表单的ID替换
wpcf7-f1114-p1110-o1
。