タグ

ブックマーク / sei.qee.jp (1)

  • HTA自身のパスを取得する

    locationのhrefプロパティを使う locationオブジェクトのhrefプロパティは、表示中のページのURLを保持しているので、それを参照します。取得できるURLはファイル名を含めたフルパスですが、ディレクトリ名を取り出すには、FileSystemObjectのGetParentFolderNameメソッドを使います。 <html> <head> <title>locationのhrefプロパティを使う</title> </head> <body> <p> <script type="text/javascript"><!-- document.writeln(location.href); document.writeln(new ActiveXObject("Scripting.FileSystemObject").GetParentFolderName(location.h

    advblog
    advblog 2012/04/11
  • 1