JavaScript に文字列 (例: #box2
) があり、そこから を取得したいだけです2
。
私は試した:
var thestring = $(this).attr('href');
var thenum = thestring.replace( /(^.+)(\w\d+\w)(.+$)/i,'$2');
alert(thenum);
それはまだアラートに返さ#box2
れます。どうすれば動作させることができますか?
端に取り付けられた任意の長さの数値に対応する必要があります。