1.數字與字串拼接,直接使用+
var score = 100;
var b = "小明"
console.log(b+score);
2.對於輸出很複雜的字串拼接,可以使用
//`$字元`
如輸出時間
var time = new date();
//獲取時間
var year = time.getfullyear();
//獲取月份
var month = time.getmonth()+1;
//獲取 幾號
var day = time.getdate();
//獲取 小時
var h = time.gethours();
//獲取分鐘
var m = time.getminutes();
//獲取秒數
var s = time.getseconds();
// 獲取週幾,周天為 0
var weeks= time.getday();
var weekend = [ '天','一','二','三','四','五','六',]
var str = `$-$-$ $ $:$:$`;
document.write(str);
js拼接字串
當要做元件的時候就會碰到html 拼裝,既然要做元件就不能依賴於html中獲取html 但是var templatehtml 當裡面的html 很複雜的時候就是個麻煩事兒 一行很長很長,而且修改起來也很不方便 這個問題的解決方法可以這樣 var outhtml 這樣寫的話 就讓可讀性增強,修改模板 ...
js拼接字串
http請求 特別是get請求 或者跳轉頁面需要拼接url請求字串,而經常性的思維就是利用 進行字串拼接 var baseurl www.google.com var a 1,b request c true var finalurl baseurl a a b b c c 高階一點就是使用es6 ...
JS字串常用操作
字串常用操作 字串的定義 var str hello word 字串的大小寫轉換 var str1 str.touppercase console.log str1 var str2 str.tolowercase console.log str2 字串的查詢 var index str.index...