使用javascript,我想要我的复选框来更改输入文本字段的文本修饰。 因此,当选中它时,输入文本字段中的文本将变为粗体。
记住我正在学习,所以我不像你们那样是专业人士;)
我想到这样的事情;
var checkbox = create("input");
checkbox.type = "checkbox";
checkbox.id = "checkboxId" + counter;
div.appendChild(checkbox);
checkbox.onClick="boldChange(this)"
var input = create("input");
input.type = "input";
input.id = "inputId" + counter;
div.appendChild(input);
function boldChange()
var boldgroup = document.getElementsByName(el.name);
for (var b=0; boldgroup[b]; ++b)
inputId.style.textDecoration = boldgroup[b].checked ? 'bold' : 'none';
}
我怎样才能做到这一点? 非常感谢你提前
答案 0 :(得分:2)
这是一个基于上面代码的工作JSFiddle示例:Link to example
代码段:(位于</body>
下方,以便加载所有DOM)
<script>
var div = document.getElementById('div'),
counter = 0;
var checkbox = document.createElement("input");
checkbox.type = "checkbox";
checkbox.id = "checkboxId" + counter;
div.appendChild(checkbox);
checkbox.onclick = boldChange;
counter++;
var input = document.createElement("input");
input.type = "text";
input.id = "inputId" + counter;
div.appendChild(input);
function boldChange() {
input.style.fontWeight = (checkbox.checked)?'bold':'normal';
}
</script>