aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/stylepropertymapreadonly/has/index.md
blob: 1014a7671ab3f63399845a5ca4d9f94c75aba54c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
title: StylePropertyMapReadOnly.has()
slug: Web/API/StylePropertyMapReadOnly/has
tags:
  - API
  - CSS Typed Object Model API
  - 実験的
  - Houdini
  - メソッド
  - リファレンス
  - StylePropertyMapReadOnly
  - has()
browser-compat: api.StylePropertyMapReadOnly.has
translation_of: Web/API/StylePropertyMapReadOnly/has
---
{{APIRef("CSS Typed Object Model API")}}{{SeeCompatTable}}

**`has()`** は {{domxref("StylePropertyMapReadOnly")}} インターフェイスのメソッドで、指定されたプロパティが `StylePropertyMapReadOnly` オブジェクトにあるかどうかを示します。

## 構文

```js
var boolean = StylePropertyMapReadOnly.has(property)
```

### 引数

- property
  - : プロパティの名前です。

### 返値

論理値です。

## 例

ここでは、 `has()` メソッドを使用して、 padding-top プロパティが button 要素の style 属性に存在するかどうかを確認します。

```js
// button 要素を取得
const buttonEl = document.querySelector('.example');

// style 属性内のものを attributeStyleMap および has() で検索
const hasPadTop = buttonEl.attributeStyleMap.has('padding-top);

console.log(hasPadTop); // padding-top が style 属性にあれば true を記録
```

## 仕様書

{{Specifications}}

## ブラウザーの互換性

{{Compat}}