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?

More than 3 years have passed since last update.

javascriptとjQuery比較

Last updated at Posted at 2021-01-02

テストを赤文字に変更する処理をjavascriptとjQueryで書いてみる

// javascript
<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
    <h1>テスト</h1>

        <script>
           document.querySelector('h1').style.color = 'red';
        </script>
</body>
</html>
<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
    <h1>テスト</h1>

    <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
    <script>
            $("h1").css('color', 'red');
    </script>
</body>
</html>

###引用

https://adventar.org/calendars/1075

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?