22 lines
507 B
HTML
22 lines
507 B
HTML
<script>
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
b.addEventListener("DOMNodeRemoved", () => {
|
|
document.execCommand("removeFormat", false)
|
|
})
|
|
document.designMode = "on"
|
|
document.execCommand("selectAll", false)
|
|
a.addEventListener("DOMAttrModified", () => {
|
|
document.execCommand("bold", false)
|
|
document.getSelection().deleteFromDocument()
|
|
})
|
|
a.className = "A"
|
|
})
|
|
</script>
|
|
<map id="a"></map>
|
|
<font></font>
|
|
<area>
|
|
<meter>
|
|
<object id="b"></object>
|
|
<font>
|
|
</font>
|
|
</meter>
|