質問編集履歴
1
autocompleteを追記。Angularタグを追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
HTMLのinputタグで入力される値を記憶し、次回候補として表示するautocomplete機能を使用したいと思います。
|
2
2
|
```html
|
3
3
|
<form>
|
4
|
-
<input type="text" name="value1">
|
4
|
+
<input type="text" name="value1" autocomplete="on">
|
5
5
|
<button type="submit">保存</button>
|
6
6
|
</form>
|
7
7
|
```
|