1. 子串的識別
- includes():返回布爾值锈遥,判斷是否找到參數(shù)字符串。
- startsWith():返回布爾值,判斷參數(shù)字符串是否在原字符串的頭部答恶。
- endsWith():返回布爾值瀑粥,判斷參數(shù)字符串是否在原字符串的尾部
let string = "apple,banana,orange";
string.includes("banana"); // true
string.startsWith("apple"); // true
string.endsWith("apple"); // false
string.startsWith("banana",6) // true 可以設(shè)置一個起始位置
2. 字符串重復(fù)
- repeat():返回新的字符串挣跋,表示將字符串重復(fù)指定次數(shù)返回
console.log("Hello,".repeat(2)); // "Hello,Hello,"
3. 字符串補(bǔ)全
- padStart:返回新的字符串,表示用參數(shù)字符串從頭部補(bǔ)全原字符串狞换。
- padEnd:返回新的字符串避咆,表示用參數(shù)字符串從頭部補(bǔ)全原字符串。
以上兩個方法接受兩個參數(shù)修噪,第一個參數(shù)是指定生成的字符串
的最小長度查库,第二個參數(shù)是用來補(bǔ)全的字符串。如果沒有指定第二個參數(shù)黄琼,默認(rèn)用空格填充樊销。
console.log("h".padStart(5,"o")); // "ooooh"
console.log("h".padEnd(5,"o")); // "hoooo"
console.log("h".padStart(5)); // " h"
- 如果指定的長度大于或者等于原字符串的長度,則返回原字符串:
console.log("hello".padStart(5,"A")); // "hello"
*常用于補(bǔ)全位數(shù):
console.log("123".padStart(10,"0")); // "0000000123"
4. 模板字符串
- 普通字符串
let string = `Hello'\n'world`;
console.log(string);
// "Hello'
// 'world"
- 多行字符串:
let string1 = `Hey,
can you stop angry now?`;
console.log(string1);
// Hey,
// can you stop angry now?
- 字符串插入變量和表達(dá)式脏款。
let name="ben";
let age=20;
let info=`my name is ${name},i am ${age+3} years old`;
console.log(info)
- 填寫html
$('#list').html(`
<ul>
<li>first</li>
<li>second</li>
</ul>
`);
5. 標(biāo)簽?zāi)0?/h1>
-
-