我找到了以下 JQUERY 脚本来执行此操作:
$(document).ready(function(){
$('textarea').on('keypress', function(e) {
var val = $('textarea').val();
var validaterror = document.getElementById('errorvalidate');
if (e.which == 13) {
if(! /\S/.test(val)) {
validaterror.textContent = 'Please enter domain names in the field.';
return false;
}
validaterror.textContent = '';
}
});
});
但我不想在我的网站上使用 Jquery,因为我对页面速度很着迷,这是我网站上使用 Jquery 并希望将该 jquery 转换为 Javascript 的单个脚本。请在这件事上帮助我。