Jquery attrメソッドで属性を取得・変更する方法

Jquery attrメソッドで属性を取得・変更する方法

Jqueryでattrメソッドを使用して、属性を取得や変更するサンプルコードを記述してます。

環境

  • OS windows10 pro 64bit
  • Apache 2.4.43
  • Jquery 3.5.1

※windows10にApacheのインストールはこちら

attrメソッド利用

取得ボタンでaタグのhref属性を取得して表示させます。
また、変更ボタンでhref属性の値を変更します。

<!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">
  <script src="http://code.jquery.com/jquery-3.5.1.min.js"></script>  
</head>
<style>
.container {
  margin: 0 auto;
  margin-top: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 50px;
}
</style>
<script>
$(function(){
  
  $('#btn_get').click(function(){
    //src属性値を取得する
    var a = $('#hoge').attr('href');
    $('#piyo').text(a);
  });

  $('#btn_up').click(function(){
    //属性を変更する
    $('#hoge').attr('href', 'https://mebee.info/');
  });    
});
</script>
<body>
  <div class="container">
    <a href="#" id="hoge">hogeリンク</a>
    <p>取得した属性</p>
    <div id="piyo"></div>    
    <button type="button" id="btn_get" class="btn btn-raised btn-warning">取得</button>
    <button type="button" id="btn_up" class="btn btn-raised btn-success">変更</button>    
  </div>
</body>

</html>

属性が取得されて、その後に変更ボタンで当サイトのURLに変更されていることが確認できます。