blob: 24a3d9041f4bb058f3f84a434774d39afd6d29e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html>
<head>
<script type="application/javascript">
let form = document.createElement('form');
let input1 = document.createElement('input');
let input2 = document.createElement('input');
document.documentElement.appendChild(form);
document.documentElement.appendChild(input1);
form.appendChild(input2);
form.contentEditable = true
input1.focus();
let range = document.createRange();
range.selectNode(input2);
window.getSelection().addRange(range);
document.execCommand("italic", false, null);
</script>
</head>
<body></body>
</html>
|