聯絡E-mail: sean0704@gmail.com
var date = '2022-10-21';
date1 = date.replace("-", "");
alert(date1); //會得到 202210-21
//如果我們希望得到 20221021 會使用 replaceAll 來替代 replace 但IE瀏覽器不支援此語法 請使用下面方式
date2 = date.replace(/-/g, "");
alert(date2); //就會得到 20221021 很簡單吧
No comments:
Post a Comment