, , , (.. /) , (<strong> versus <bold> , , <span style="font-weight: bold">), document.execCommand(), :
function toggleBold() {
document.execCommand("bold", false, null);
}
, , IE. , , :
function toggleBold() {
var range, sel;
if (window.getSelection) {
sel = window.getSelection();
if (sel.getRangeAt) {
range = sel.getRangeAt(0);
}
document.designMode = "on";
if (range) {
sel.removeAllRanges();
sel.addRange(range);
}
document.execCommand("bold", false, null);
document.designMode = "off";
} else if (document.selection && document.selection.createRange &&
document.selection.type != "None") {
range = document.selection.createRange();
range.execCommand("bold", false, null);
}
}