We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jQueryで簡単なプログラムを書いてみます。
以下のソースを基にHTMLファイルを作成して下さい。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <script type="text/javascript" src="http://code.jquery.com/jquery-2.1.0.min.js"></script> </head> <body> <!-- header --> <header> <h1>jQueryサンプル</h1> </header> <!-- content --> <article> <p id="msg">サンプルです。</p> </article> <!-- footer --> <footer> Copyright 2014 </footer> </body> </html>
作成したHTMLファイルをブラウザで開いた時にHello World!とアラートが表示されるようにして下さい。 その際、以下の事を考慮、調べて実装して下さい。
Hello World!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
■目的
jQueryで簡単なプログラムを書いてみます。
■課題
以下のソースを基にHTMLファイルを作成して下さい。
作成したHTMLファイルをブラウザで開いた時に
Hello World!
とアラートが表示されるようにして下さい。その際、以下の事を考慮、調べて実装して下さい。
The text was updated successfully, but these errors were encountered: