1、獲取URL的code的參數的值
需求說明:現在有URL為http://www.bdqn.cn/index.php?code=sdR4,請使用字符串對象的屬性和方法來獲取code的值,並把其指都轉化為小寫。
js中實現字母大小寫轉換主要用到了四個js函數:
1.toLocaleUpperCase
2.toUpperCase
3.toLocaleLowerCase
4.toLowerCase
下面就這四個實現大小寫轉換的js函數逐一做簡單的分析。
1.toLocaleUpperCase
將字符串中所有的字母字符都將被轉換為大寫的,同時適應宿主環境的當前區域設置。
2.toUpperCase
將字符串中的所有字母都被轉化為大寫字母。
3.toLocaleLowerCase
將字符串所有的字母字符都被轉換為小寫,同時考慮到宿主環境的當前區域設置。
4.toLowerCase
將字符串中的字母被轉換為小寫字母。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <html> <head> <title>獲取URL中的code</title> <script type="text/javascript"> function run(){ // 獲取href var href = document.getElementsByTagName("a")[0].getAttribute("href").valueOf(); // 取到sdR4 var code =href.substring(href.length-4,href.length); // 轉小寫 var small = code.toLocaleLowerCase(); document.getElementById("code").innerHTML ="超鏈接URL=后面數值小寫為:"+small; } </script> </head> <body onload="run()"> <a href="http://www.bdqn.cn/index.php?code=sdR4" name="url">超鏈接</a> <p id="code"></p> </body> </html>