1
1

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.

【jQuery】jQueryでハローワールド

Last updated at Posted at 2021-05-15

jQueryを公式サイトからダウンロード。
参照: http://jquery.com/

image.png

image.png

そのまま、Ctrl + s で保存。※ダウンロードフォルダとかはない。

image.png


<!DOCTYPE html>
<html lang="ja">
<head>
   <meta charset="UTF-8">
   <title>HelloWorld!</title>
   <script src="jquery-3.6.0.min.js"></script>
   <script>
    $(function(){
      $('body').html('HelloWorld');
    });
    </script>
<body>
</body>
</html>

実行結果

image.png

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?