[jQuery] 連番の id や class をセレクトして数字のみを取得する
memo.
$("[id^=aaa]")
var num = str.match(/\d/g).join("");
こんな感じなのか。
See the Pen ogZBxz by DriftwoodJP (@DriftwoodJP) on CodePen.
memo.
$("[id^=aaa]")
var num = str.match(/\d/g).join("");
こんな感じなのか。
See the Pen ogZBxz by DriftwoodJP (@DriftwoodJP) on CodePen.