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