-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProtType
51 lines (41 loc) · 1.35 KB
/
ProtType
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link type="text/css" rel="stylesheet" href="style1.css">
<title>prototype</title>
<script type="text/javascript" language="javascript">
function onButtonClick() {
var target = document.getElementById("output");
target.innerText = document.forms.id_form1.id_textBox1.value;
}
</script>
</head>
<body>
<div class="wrapper">
<div class="header">
<h1>つぅちったー</h1>
</div>
<div class="profile">
<img src="#" alt="hoge">
<h2 class="profile_name">hoge</h2>
<label class="profile_id">@hogehoge</label>
<ul>
<li class="profile_list">ポスト</li>
<li class="profile_list">支持者</li>
<li class="profile_list">被支持者</li>
</ul>
</div>
<div class="Posting_Box">
<p class="Posting_Box_P ">思ったことを投稿する</p>
<form name="form1" id="id_form1" action="">
<input name="textBox1" id="id_textBox1" type="text" value="" maxlength="140"/>
<button type="button" value="Exec" onclick="onButtonClick();" />
<button type="button" value="images"/>
</form>
</div>
<div id ="output">
</div>
</div>
</body>
</html>