-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext.html
38 lines (35 loc) · 956 Bytes
/
text.html
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Тестирование текста</title>
<link rel="stylesheet" href="https://unpkg.com/7.css">
<style>
body {
color: #FFFFFF
}
#miniWindow {
border: 1px solid #FFFFFF;
border-radius: 4px;
padding: 10px;
margin-top: 10px;
width: 200px;
height: 20px;
overflow: auto;
color: #FFFFFF;
}
</style>
</head>
<body>
<input type="text" id="textField" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" aria-autocomplete="list">
<button onclick="testText()">протестировать!</button>
<div id="miniWindow"></div>
<script>
function testText() {
var textValue = document.getElementById('textField').value;
document.getElementById('miniWindow').innerText = textValue;
document.getElementById('textField').value = ''; // Очистить текстовое поле
}
</script>
</body>
</html>