DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> javascript生成隨機大小寫字母的方法
javascript生成隨機大小寫字母的方法
編輯:JavaScript綜合知識     

 這篇文章主要介紹了javascript生成隨機大小寫字母的方法,需要的朋友可以參考下

 代碼如下: /**  * 返回一個隨機的小寫字母  */  function getLowerCharacter(){  return getCharacter("lower");;  }      /**  * 返回一個隨機的大寫字母  */  function getUpperCharacter(){  return getCharacter("upper");;  }      /**  * 返回一個字母  */  function getCharacter(flag){  var character = "";  if(flag === "lower"){  character = String.fromCharCode(Math.floor( Math.random() * 26) + "a".charCodeAt(0));  }  if(flag === "upper"){  character = String.fromCharCode(Math.floor( Math.random() * 26) + "A".charCodeAt(0));  }  return character;  }   
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved