js復文字函式及常用的js驗證

2021-09-16 13:10:14 字數 2965 閱讀 8208

我們在做後台發布文章或者輸入的時候,通常用復文字框,我前面文章總結了前端常用的復文字,但是,我們在前台使用者輸入的時候,通常限制復文字的輸入,當然,你也可以允許使用者用復文字,不過要在提交的時候或者後台對提交的內容進行過濾或者審核。學習程式設計最重要的是**敲錯能夠有個人給你指點

所以特意建立乙個web前端開發學習群

群號 569146385直達學習群

領取群裡大咖每日分享和web前端學習資料

下面我們來總結一下前端js復文字常用的函式。

//斜體

function italicize(obj) else }}

//下劃線

function underline(obj) else }}

//居中

function center(obj) else

txt=prompt('要對齊的文字','文字');

if (txt!=null) }}

//粗體

function bold(obj) else }}

//插入

function insimg(obj) else

}}

//插入url

function insurl(obj,is) else else

if (txt!=null) }}

//建立工具條

function *******s(areaname,isimg,insite)

if(insite)else

document.write("

document.write("

document.write("

document.write("

document.write("

document.write("

document.write("

document.write("

document.write("

document.write("

document.write("

document.write("

document.write("

document.write("

document.write("

document.write("

document.write("

document.write("

document.write("

document.write("

}

注意,用js的selection 物件 來監聽文字是否選中。用法如上:document.selection

//輸入數字攔截

function inputnum(event)else

}//檢查輸入是否為float數字

function checkfloat(obj,pre)else

}//檢查file表單項是否為

function checkimg(imgfile)else

}else

}else

}//檢查檔案的尺寸

function checksize(imgfile,maxsize)else

img.src=imgfile;

}function oe()

function orsc();

if(parseint(img.filesize)>maxsize*1000)}}

//獲得位元組長度

function bytelength(string)

//讀取cookie

function getcookie(name)else

}//寫入cookie

function setcookie(name, value)

//實現ctrl+enter 提交的效果

function quickpost(event)

}

//判斷使用者名稱是否符合要求

function usernamecheck(string)

var re;

re=new regexp("^[a-z|a-z|0-9][a-z|a-z|0-9|-]+$");

return re.test(string);

}//判斷密碼是否符合規範

function passwordcheck(string)

//收藏指定頁面

function addbookmark(title,url) else if( document.all ) else if( window.opera && window.print )

}//判斷字元中是否包含有url位址

function urlcheck(string)

//判斷電子郵箱是否符合規範

function emailcheck(string)$");

return re.test(string.tolowercase());

}//向某個物件傳送乙個click事件

function toclick(objid)else

}//判斷字串的位元組數

function strlen(string)

//乙個可以實現key value 功能的物件

function gsarrays(){

this.keys=new array();

this.values=new array();

this.set=function (key,value){

for(i=0;i學習程式設計最重要的是**敲錯能夠有個人給你指點

所以特意建立乙個web前端開發學習群

群號 569146385直達學習群

領取群裡大咖每日分享和web前端學習資料

常用js驗證

一 驗證類 1 數字驗證內 1.1 整數 d test str 1.2 大於0的整數 用於傳來的id的驗證 d test str 1.3 負整數的驗證 d test str 2 時間類 2.1 短時間,形如 13 04 06 function istime str d 2 d if a null i...

常用驗證JS

1 js 字串長度限制 判斷字元長度 js限制輸入 限制不能輸入 textarea 長度限制 2 js驗證郵箱格式 3 js遮蔽關鍵字 這裡遮蔽 和 4 js兩次輸入密碼是否相同 5 js遮蔽右鍵 nc ntextmenu return false ndragstart return false o...

常用的JS驗證

檢查使用者名稱是否由字母 數字 下劃線組成的,並且長度位6 20位 輸出提示資訊到id為info的label上 function checkname var username document.getelementbyid username value if rename.test username...