0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【備忘録】jQuery

Posted at

jQuery

CDN

<script sec="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script sec="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5.1.min.js"></script>
<script sec="http://code.jquery.com/jquery-1.5.1.min.js"></script>

基本構文

クリック

$(document).ready(function(){
    $("#hoge").on("click", function() {
        alert("クリック");
    });
});

HTML書き換え

$("#hoge").replaceWith(`<th class="hoge">`);
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?