diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-03 01:53:36 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-10 22:12:29 +0900 |
commit | f2e0ac69fe16d8f2e5a9c2ced6913bd94cce5871 (patch) | |
tree | 421d1e153f5a88ccfe6359a251b8922409a72820 /files/ja/web/api | |
parent | 0e6c4298bebd025a4358fe34826798a92804363b (diff) | |
download | translated-content-f2e0ac69fe16d8f2e5a9c2ced6913bd94cce5871.tar.gz translated-content-f2e0ac69fe16d8f2e5a9c2ced6913bd94cce5871.tar.bz2 translated-content-f2e0ac69fe16d8f2e5a9c2ced6913bd94cce5871.zip |
2021/09/15 時点の英語版に同期
Diffstat (limited to 'files/ja/web/api')
-rw-r--r-- | files/ja/web/api/geolocationpositionerror/message/index.md | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/files/ja/web/api/geolocationpositionerror/message/index.md b/files/ja/web/api/geolocationpositionerror/message/index.md new file mode 100644 index 0000000000..40b828f90e --- /dev/null +++ b/files/ja/web/api/geolocationpositionerror/message/index.md @@ -0,0 +1,39 @@ +--- +title: GeolocationPositionError.message +slug: Web/API/GeolocationPositionError/message +tags: + - API + - 位置情報 API + - GeolocationPositionError + - プロパティ + - 安全なコンテキスト + - message +browser-compat: api.GeolocationPositionError.message +tranlation_of: Web/API/GeolocationPositionError/message +--- +{{securecontext_header}}{{APIRef("Geolocation API")}} + +**`GeolocationPositionError.message`** は読み取り専用のプロパティで、エラーの詳細を説明する、人間が読める {{domxref("DOMString")}} を返します。 + +## 構文 + +```js +let msg = geolocationPositionErrorInstance.message +``` + +### 値 + +エラーの詳細を説明する、人間が読める {{domxref("DOMString")}} です。 + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- [位置情報 API の使用](/ja/docs/Web/API/Geolocation_API/Using_the_Geolocation_API) +- {{domxref("GeolocationPositionError")}} |