替換字符我有以下URL作爲一個字符串:無法在javascript
var fb= "https://www.facebook.com/XYZ"
我想刪除https://www.facebook.com和只顯示/ XYZ。
我試過警告(fb.replace(「facebook.com」,「」));警報(fb.substring('facebook.com'.length)); 但didn`t幫助
嘗試代碼:
alert(fb.replace("facebook.com",""));
alert(fb.substring('facebook.com'.length));
任何幫助將不勝感激。
你試過的東西? –
提醒(fb.replace(「https://www.facebook.com」,「」)); \t \t \t \t \t \t alert(fb.substring('https://www.facebook.com'.length)); –
如果你只是想知道你得到了什麼票,那是因爲你最初沒有提到你的嘗試過的代碼。下次,請將您的試用代碼與問題一起添加。 –