⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 remark.js

📁 前台完全分离了HTML与ASP
💻 JS
字号:
function checkRemarkForm()
 {
	if (document.form1.name.value=="")
	{
	  alert("不会是无名氏吧^_^~,还是请高提贵笔写一下吧。");
	  document.form1.name.focus();
	  return false;
	}
	if (document.form1.name.value.length>20)
	{
		alert("不会吧名字这么长啊~当前字数:"+document.form1.content.value.length)
		document.form1.name.focus();
		return false;
	}
	
	if (document.form1.content.value=="")
	{
		alert("不是吧,内容都不写,那我们怎么知道你想说什么呢?")
		document.form1.content.focus();
		return false;
	}
	if (document.form1.content.value.length>1000)
	{
		alert("字数过多了.最大允许字数为1000个.请言简意赅些~当前字数:"+document.form1.content.value.length)
		document.form1.content.focus();
		return false;
	}
	return true;
	 
 }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -