我正在使用没有任何库的javascript。现在,我只想更改文本区域中所选文本的字体样式。我使用以下功能提取了选择文本。有人可以帮忙吗?
function ShowSelectionInsideTextarea(editor){
var textComponent = document.getElementById(editor);
var selectedText;
// IE version
if (document.selection != undefined)
{
textComponent.focus();
var sel = document.selection.createRange();
selectedText = sel.text;
}
// Mozilla version
else if (textComponent.selectionStart != undefined)
{
var startPos = textComponent.selectionStart;
var endPos = textComponent.selectionEnd;
selectedText = textComponent.value.substring(startPos, endPos)
}
console.log(selectedText);
}
最佳答案
怎么样console.log(selectedText.fontsize(100))
,有关更多信息,请引用docs
关于javascript - 在javascript中更改所选文本的字体样式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27312928/