我需要制作一个按钮,其中一个按钮用于将文本区域中的文本设置为粗体,并将其取消设置为以前的状态。这应该是同一个按钮。
function toggleBold() {
var bold = true
if (bold = ture) {
document.getElementById("entertext").
}
}
<button onclick="toggleBold">BOLD</button>
<form>
Enter Text:
<br>
<input type="text" name="your text" id="entertext">
</form>
最佳答案
可以使用Jquery
形式
<button class="toggleBold">BOLD</button>
<form>
Enter Text:
<br>
<input type="text" name="your text" id="entertext">
</form>
滑动分页
$(".toggleBold").click(function() {
document.getElementById("entertext").classList.toggle("bold");
});
Css
.bold { font-weight: bold; }
关于javascript - javascript按钮将字体从粗体切换为原始,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42206464/