javascript htmlの属性の値を取得する
- 作成日 2020.09.15
- 更新日 2022.06.22
- javascript
- javascript
javascriptで、getAttributeを用いてhtmlの属性の値を取得するサンプルコードを記述してます。
環境
- OS windows10 pro 64bit
- Apache 2.4.43
- ブラウザ chrome 102.0.5005.115
getAttribute使い方
getAttributeを使用すると、htmlタグ内に指定している属性の値を取得することが可能です。
document.getElementById("id名").getAttribute("属性名");
getAttribute使い方
<input id="str" type="text" class="form-control">
<script>
let val = document.getElementById("str").getAttribute("type");
console.log(val); // text
</script>
サンプルコード
以下は、
「取得」ボタンをクリックすると、「getAttribute」で指定した属性の値を取得して表示する
サンプルコードとなります。
※cssには「bootstrap material」を使用してます。
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>mebeeサンプル</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons">
<link rel="stylesheet"
href="https://unpkg.com/bootstrap-material-design@4.1.1/dist/css/bootstrap-material-design.min.css"
integrity="sha384-wXznGJNEXNG1NFsbm0ugrLFMQPWswR3lds2VeinahP8N0zJw9VWSopbjv2x7WCvX" crossorigin="anonymous">
</head>
<style>
.main {
margin: 0 auto;
margin-top: 200px;
display: flex;
flex-direction: column;
align-items: center;
font-size: 25px;
width: 500px;
}
</style>
<script>
function hoge() {
// 属性の値の取得
let val = document.getElementById("str").getAttribute("type");
// 表示用の要素
let obj = document.getElementsByClassName('badge');
obj[0].textContent = val;
}
</script>
<body>
<div class="main">
<h2><span class="badge badge-success">属性の値</span></h2>
<form>
<div class="form-group">
<input id="str" type="text" class="form-control">
</div>
</form>
<button onclick="hoge()" type="button" class="btn btn-raised btn-danger">
取得
</button>
</div>
</body>
</html>
属性が取得されていることが確認できます。
-
前の記事
javascript 半角英数字のチェックを行う 2020.09.15
-
次の記事
React.js ライブラリ「vertical-timeline-component-react」をインストールしてタイムライムを構築する 2020.09.15
コメントを書く