最大化div&更改其fontSize

时间:2015-12-16 10:16:48

标签: javascript html css font-size maximize

我的html中有2个div,我希望通过onclick增加大小,但fontSize不会改变。

代码:

function changeSize(id, weight, height)
{
with (document)
{
	if (getElementById(id).style.width = '240px'){
		getElementById(id).style.width = weight + 'px';
		getElementById(id).style.height = height + 'px';
		getElementById(id).style.fontSize = '30px';
	}	
	else {
		getElementById(id).style.width ='240px';
		getElementById(id).style.height ='300px';
		getElementById(id).style.fontSize = '18px';

	}
}
}
.kaesten{
	width:240px;
	height:300px;
	background-color:darkgrey;
	background-position:center;
	background-repeat:no-repeat;
	text-shadow:0px 0px 3px #000;
	border: 5px solid #F0F8ff;
	vertical-align:top;
	text-shadow: 3px 3px 4px #777;
	float:left;
	margin-left:30px;
}
<div id="box1" class="kaesten" onclick="maxi('box1', 600, 600); return false;">
test1

</div>

<div id="box2" class="kaesten">
test2
</div>

问题:如何更改fontSize?如何通过再次单击将div大小再次更改为原始大小?

3 个答案:

答案 0 :(得分:1)

你犯了一个错字。 JavaScript中的属性和方法是区分大小写的。该方法为getElementById,而非getElementByID

假设元素上的唯一内联样式是您在上面的函数中添加的样式,您可以使用以下内容删除样式并“重置”元素:

function changeSize(id, weight, height){
    var elem = document.getElementById(id);
    if(elem.getAttribute('style')){
        elem.removeAttribute('style');
    } else {
        elem.style.width = weight + 'px';
        elem.style.height = height + 'px';
        elem.style.fontSize = '30px';
    }
}

var elems = document.getElementsByClassName('kaesten');
for(var i = 0; i < elems.length; i++){
    elems[i].onclick = function(){
        changeSize(this.id, 600, 600);
    }
}
<div id="box1" class="kaesten">test1</div>
<div id="box2" class="kaesten">test2</div>

更好的方法是简单地将元素作为引用传递给函数,而不是传递元素id并且必须再次查询文档。

答案 1 :(得分:1)

在这种情况下,您可以做的最好的事情是使用2个css类并使用javascript切换它们。在每次点击时,你可以检查它是否有某个类,然后切换那些

.normal{
    width:240px;
    height:300px;
    background-color:darkgrey;
    background-position:center;
    background-repeat:no-repeat;
    text-shadow:0px 0px 3px #000;
    border: 5px solid #F0F8ff;
    vertical-align:top;
    text-shadow: 3px 3px 4px #777;
    float:left;
    margin-left:30px;
}

.maximize{
    width:4800px;
    height:600px;
    font-size:30px;
    background-color:darkgrey;
    background-position:center;
    background-repeat:no-repeat;
    text-shadow:0px 0px 3px #000;
    border: 5px solid #F0F8ff;
    vertical-align:top;
    text-shadow: 3px 3px 4px #777;
    float:left;
    margin-left:30px;
}

您可以切换:

var class = document.getElementById("MyElement").className;
if(class === "normal"){
     document.getElementById("MyElement").className = "maximize";
} else {
     document.getElementById("MyElement").className = "normal";
}

答案 2 :(得分:0)

拼写错误

getElementById(id).style.fontSize = '30' +'px';
             ^

请检查它是否有效

function maxi(id, weight, height)
{
	with (document)
	{
		getElementById(id).style.width = weight + 'px';
		getElementById(id).style.height = height + 'px';
		getElementById(id).style.fontSize = '30' +'px';
		
	}
}
.kaesten{
	width:240px;
	height:300px;
	background-color:darkgrey;
	background-position:center;
	background-repeat:no-repeat;
	text-shadow:0px 0px 3px #000;
	border: 5px solid #F0F8ff;
	vertical-align:top;
	text-shadow: 3px 3px 4px #777;
	float:left;
	margin-left:30px;
}
<div id="box1" class="kaesten" onclick="maxi('box1', 600, 600); return false;">
test1

</div>

<div id="box2" class="kaesten">
test2
</div>