您好我有这个代码用3个按钮改变一个段落的字体大小,我想知道我可以使用哪个方法不重复相同的行并使这个代码更紧凑非常感谢你:)) p>
window.addEventListener('load', inicio, false);
function inicio(){
var boton1 = document.getElementById('boton1');
var boton2 = document.getElementById('boton2');
var boton3 = document.getElementById('boton3');
boton1.addEventListener('click', fuente10, false);
boton2.addEventListener('click', fuente13, false);
boton3.addEventListener('click', fuente20, false);
}
function fuente10(){
var parrafo = document.getElementById('parrafo');
parrafo.style.fontSize='10px'
}
function fuente13(){
var parrafo = document.getElementById('parrafo');
parrafo.style.fontSize='13px'
}
function fuente20(){
var parrafo = document.getElementById('parrafo');
parrafo.style.fontSize='20px'
}
我正在思考for循环,但我无法弄明白该怎么做:/
答案 0 :(得分:3)
尝试这样的事情
window.addEventListener('load', inicio, false);
function inicio(){
var boton1 = document.getElementById('boton1');
var boton2 = document.getElementById('boton2');
var boton3 = document.getElementById('boton3');
boton1.addEventListener('click', function() { setFont("10px");}, false);
boton2.addEventListener('click', function() { setFont("13px");}, false);
boton3.addEventListener('click', function() { setFont("20px");}, false);
}
function setFont(value){
var parrafo = document.getElementById('parrafo');
parrafo.style.fontSize= value;
}
<强>更新强> 一个不同的approch(未测试,但应该工作)
window.addEventListener('load', inicio, false);
function inicio() {
var fontDetails = {"boton1" : "10px" , "boton2" : "13px" , "boton3" : "20px"};
var parrafo = document.getElementById('parrafo');
var domElement = "";
var element = "";
for (element in fontDetails)
{
domElement = document.getElementById(element);
domElement.addEventListener('click', function() { parrafo.style.fontSize= fontDetails[element]; }, false);
}
}
你也可以删除窗口加载事件处理程序和函数inicio并尝试像这样的自执行函数
(function() { //your code here } )();
答案 1 :(得分:1)
也许这种改变可以帮到你:
window.addEventListener('load', inicio, false);
var boton;
function inicio()
{
modificar('boton1', 10);
modificar('boton2', 13);
modificar('boton3', 20);
}
function modificar(id, size)
{
boton = document.getElementById(id);
boton.onclick=function(){fuente(size)};
console.log(boton);
}
function fuente(size)
{
var parrafo = document.getElementById('parrafo');
parrafo.style.fontSize=size+'px';
}