blitz-time アプリ開発ブログ

Androidアプリ開発などのTips集

【jQuery入門】参照サンプル

jQueryのコードを書く時の最低限のコードです。
いつも忘れるので、備忘録として。

<html>

<head>
    <script type="text/javascript" src="https://code.jquery.com/jquery-3.3.1.js"></script>
    <script>
        $(function() {
            $('#sample').css("color", "red");
        });
    </script>
</head>

<body></body>
<div id="sample">
    hello
</div>

</html>

結果
f:id:mfblitz:20201213082542p:plain