01.
<
html
>
02.
03.
<
meta
http-equiv
=
"x-ua-compatible"
content
=
"ie=edge"
>
04.
<
meta
charset
=
"utf-8"
>
05.
<
script
src
=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"
></
script
>
06.
<
link
rel
=
"stylesheet"
href
=
"https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.1/css/bootstrap.css"
>
07.
08.
<
script
src
=
"mysql.js?001"
></
script
>
09.
10.
<
head
>
11.
<
script
>
12.
13.
$(function(){
14.
15.
$("<
input
>")
16.
.appendTo( $("body") )
17.
.css( {
18.
"background-color": "skyblue",
19.
"color": "white"
20.
})
21.
.prop( {
22.
"value": "入力",
23.
"id" : "fld1"
24.
})
25.
;
26.
27.
});
28.
29.
30.
</
script
>
31.
</
head
>
32.
<
body
>
33.
34.
35.
36.
37.
38.
</
body
>
39.
</
html
>