- ベストアンサー
フォルダ名の取得方法
お世話になります。 location.href="//xxx/yyy/zzz/index.html" のとき、 htmlName = location.href.substr(location.href.lastIndexOf("/")+1); で、htmlName ='index.html' と、なりますが、 htmlName ='zzz' を取得する方法はないものでしょうか。 よろしくお願いいたします。
- みんなの回答 (1)
- 専門家の回答
お世話になります。 location.href="//xxx/yyy/zzz/index.html" のとき、 htmlName = location.href.substr(location.href.lastIndexOf("/")+1); で、htmlName ='index.html' と、なりますが、 htmlName ='zzz' を取得する方法はないものでしょうか。 よろしくお願いいたします。
お礼
早速レスありがとうございます。 バッチシです。 なるほどというテクニックで感心しました。 ありがとうございました。