質問編集履歴
4
修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
<div class="string_input">
|
7
7
|
<h2 class="hoge">英文字1</h2>
|
8
8
|
<div class="input text required">
|
9
|
-
<input type="text" name="0[english]"
|
9
|
+
<input type="text" name="0[english]" placeholder="English" id="0-english" />
|
10
10
|
</div>
|
11
11
|
<button class="normal_cleartext" type="button">clear</button>
|
12
12
|
<button class="normal_lower clearfix" type="button">lower</button>
|
@@ -14,7 +14,7 @@
|
|
14
14
|
<div class="string_input">
|
15
15
|
<h2 class="hoge">英文字2</h2>
|
16
16
|
<div class="input text required">
|
17
|
-
<input type="text" name="1[english]"
|
17
|
+
<input type="text" name="1[english]" placeholder="English" id="1-english" />
|
18
18
|
</div>
|
19
19
|
<button class="normal_cleartext" type="button">clear</button>
|
20
20
|
<button class="normal_lower clearfix" type="button">lower</button>
|
@@ -22,7 +22,7 @@
|
|
22
22
|
<div class="string_input">
|
23
23
|
<h2 class="hoge">英文字3</h2>
|
24
24
|
<div class="input text required">
|
25
|
-
<input type="text" name="2[english]"
|
25
|
+
<input type="text" name="2[english]" placeholder="English" id="2-english" />
|
26
26
|
</div>
|
27
27
|
<button class="normal_cleartext" type="button">clear</button>
|
28
28
|
<button class="normal_lower clearfix" type="button">lower</button>
|
3
修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -6,26 +6,26 @@
|
|
6
6
|
<div class="string_input">
|
7
7
|
<h2 class="hoge">英文字1</h2>
|
8
8
|
<div class="input text required">
|
9
|
-
<input type="text" name="0[english]" id="0-english" />
|
9
|
+
<input type="text" name="0[english]" "placeholder"="English" id="0-english" />
|
10
10
|
</div>
|
11
11
|
<button class="normal_cleartext" type="button">clear</button>
|
12
|
-
<button class="normal_lower clearfix"
|
12
|
+
<button class="normal_lower clearfix" type="button">lower</button>
|
13
13
|
</div>
|
14
14
|
<div class="string_input">
|
15
15
|
<h2 class="hoge">英文字2</h2>
|
16
16
|
<div class="input text required">
|
17
|
-
<input type="text" name="1[english]" id="1-english" />
|
17
|
+
<input type="text" name="1[english]" "placeholder"="English" id="1-english" />
|
18
18
|
</div>
|
19
19
|
<button class="normal_cleartext" type="button">clear</button>
|
20
|
-
<button class="normal_lower clearfix"
|
20
|
+
<button class="normal_lower clearfix" type="button">lower</button>
|
21
21
|
</div>
|
22
22
|
<div class="string_input">
|
23
23
|
<h2 class="hoge">英文字3</h2>
|
24
24
|
<div class="input text required">
|
25
|
-
<input type="text" name="2[english]" id="2-english" />
|
25
|
+
<input type="text" name="2[english]" "placeholder"="English" id="2-english" />
|
26
26
|
</div>
|
27
27
|
<button class="normal_cleartext" type="button">clear</button>
|
28
|
-
<button class="normal_lower clearfix"
|
28
|
+
<button class="normal_lower clearfix" type="button">lower</button>
|
29
29
|
</div>
|
30
30
|
<button class="submit" type="submit">登録</button>
|
31
31
|
</form>
|
2
タグ追加
title
CHANGED
File without changes
|
body
CHANGED
File without changes
|
1
編集
title
CHANGED
File without changes
|
body
CHANGED
@@ -33,7 +33,7 @@
|
|
33
33
|
```
|
34
34
|
|
35
35
|
jQuery
|
36
|
-
```
|
36
|
+
```JavaScript
|
37
37
|
|
38
38
|
$(function() {
|
39
39
|
$(".strtolower").click(function() {
|