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