轉義符小示例
var word = "haha";
var text = "\""+word+"\"";
alert(text) ;
**輸出
\'單引號
\"雙引號
\&和號
\\反斜槓
\n換行符
\r回車符
\t製表符
\b退格符
\f換頁符
字串 替換方法
replace
1、只替換乙個
var time = "2012-12-12";
time = time.replace("-","");
alert(time) *****> 201212-12
2、替換所有
var time = "2012-12-12";
time = time.replace(new
regexp("-","g") ,"");
//g代表所有
alert(time) *****> 20121212
python的一些常見用法
1.字典 建立 dict 新增元素 dict 1 a 遍歷 for index in dict print index,dict dict 結果輸出為 1,a 刪除 del dict 1 結果 1 a 這一對key value都被刪除了。不過注意,不能在遍歷字典的時候使用del。一種方法是遍歷的時候...
js的一些常見驗證
1.是否以某字串結尾 endswith thestr,endstr param thestr 要判斷的字串 param endstr 以此字串結尾 return boolean function endswith thestr,endstr 1.是否以某字串開始 startswith thestr,...
js的一些常用法
1 判斷螢幕大小的 window.screen.width 2 for var i 0 itable tab for var ji 1 ji strcontent count unit stropt desc.substr stropt desc.indexof 2 strcount unit if...