作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想用这段代码做动态 Div 大小。我希望 div 的大小可以通过加号和减号按钮来增加或减小。我该怎么办>
这是我的代码:
Javascript:
window.onload=function(){
var output = document.getElementById('output');
var i=1;
//var val="";
while(i<=3)
{
if(!document.getElementById('timedrpact'+i))
{
var ele = document.createElement("div");
ele.setAttribute("id",i);
ele.setAttribute("class","inner");
//ele.innerHTML="hi "+i;
var bplus = document.createElement('button');
bplus.setAttribute('content', 'plus');
bplus.setAttribute('class', 'bplus');
bplus.setAttribute('onClick', 'plusDiv('+i+');');
bplus.style.setProperty ("background-color", "green", null);
bplus.style.setProperty ("color", "green", null);
bplus.innerHTML = '!!!!';
var bminus = document.createElement('button');
bminus.setAttribute('content', 'minus');
bminus.setAttribute('onClick', 'minusDiv('+i+');');
bminus.setAttribute('class', 'bminus');
bminus.style.setProperty ("background-color", "red", null);
bminus.style.setProperty ("color", "red", null);
bminus.innerHTML = '!!';
output.appendChild(ele);
ele.appendChild(bplus);
ele.appendChild(bminus);
}
i++;
}
};
function plusDiv(id) {
var el = document.getElementById(i);
var height = el.offsetHeight;
var newHeight = height + 200;
el.style.height = newHeight + 'px';
}
function minusDiv() {
var el = document.getElementById(i);
var height = el.offsetHeight;
var newHeight = height - 200;
el.style.height = newHeight + 'px';
}
HTML
<div id="output" class="out">
</div>
CSS
div {
border: 1px dotted red;
padding: 10px;
}
当我点击按钮时,它没有做任何事情。
我想用加号和减号按钮调整这个 Div 的大小。
有什么想法吗?
最佳答案
你的代码有错误试试这个
function plusDiv(id) {
var el = document.getElementById(id);
var height = el.offsetHeight;
var newHeight = height + 200;
el.style.height = newHeight + 'px';
}
function minusDiv(id) {
var el = document.getElementById(id);
var height = el.offsetHeight;
var newHeight = height - 200;
el.style.height = newHeight + 'px';
}
关于javascript - 我想在 javascript 中做动态 div 高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26160250/
使用登录后,我想吐出用户名。 但是,当我尝试单击登录按钮时, 它给了我力量。 我看着logcat,但是什么也没显示。 这种编码是在说。 它将根据我在登录屏幕中输入的名称来烘烤用户名。 不会有任何密码。
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎是题外话,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或include a min
我是一名优秀的程序员,十分优秀!