• ベストアンサー

フォルダ名の取得方法

お世話になります。 location.href="//xxx/yyy/zzz/index.html" のとき、 htmlName = location.href.substr(location.href.lastIndexOf("/")+1); で、htmlName ='index.html' と、なりますが、 htmlName ='zzz' を取得する方法はないものでしょうか。 よろしくお願いいたします。

質問者が選んだベストアンサー

  • ベストアンサー
  • yambejp
  • ベストアンサー率51% (3827/7415)
回答No.1

<script> var arr=location.href.split("/"); alert(arr[arr.length -2]) </script> とかでどうでしょう?

rqg2010
質問者

お礼

早速レスありがとうございます。 バッチシです。 なるほどというテクニックで感心しました。 ありがとうございました。

関連するQ&A