gpt4 book ai didi

javascript - jQuery Append 删除/隐藏以前的对象

转载 作者:太空宇宙 更新时间:2023-11-04 09:00:05 24 4
gpt4 key购买 nike

我不是 100% 确定这里到底发生了什么,但我想要发生的是随机添加一个 div,宽度为 50% 或 25%,但 div 的总长度达到 75% 以上或100% 同时使用数据属性将 div 的总大小加在一起。在 75% 时,25% 的 div 被硬编码,并且在总长度变量设置为 0 后循环再次开始,在 100% 时总长度变量设置为 0 并且随机性再次开始但是已经附加的 div 应该存在,我的问题是它们不存在。

例如,如果我连续获得两个 50% 的 div,仅显示 1 个,当我 console.log 事件时,它显示正确的数字 50 然后 100... 但仅显示 1 个 div通过追加。

希望我的 fiddle 可以阐明这种情况:https://jsfiddle.net/g8urnar3/2/

(点击名为button的 anchor 标签重现错误)

我的问题是,是什么导致了这种情况发生,为什么?

根据要求的代码...

<html>
<style>
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html, body{
padding: 0;
border: none;
margin: 0;
}
a {
padding: 15px;
background: lightgrey;
text-decoration: none;
color: white;
border-radius: 4px;
}
.list {
width: 100%;
padding: 0;
margin: 0;
border: none;
}
a:hover{
cursor: pointer;
}
div {
height: 100px;
border: 2px solid black;
display: inline;
float: left;
}
.div-50{
width: 50%;
background-color: red;
}
.div-25{
width: 25%;
background-color: green;
}
</style>

<center>
<a href="#">Button</a>
</center>

<br><br>

<hr>
<div class="list">
</div>

</html>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script>
(function(){

var currentLength = 0;

var arr = [$("<div class='div-50' data-width='50'></div>"), $("<div class='div-25' data-width='25'></div>")];

$('a').click(function(){
console.log(currentLength);
if(currentLength < 75)
{
var random = arr[Math.floor(Math.random() * arr.length)];
currentLength = currentLength + Number($(random).attr("data-width"));
$('.list').append(random);

console.log(random);
console.log($("<div class='div-25' data-width='25'></div>"));
}
else if(currentLength == 100) {
currentLength = 0;
var random = arr[Math.floor(Math.random() * arr.length)];
currentLength = currentLength + Number($(random).attr("data-width"));
$('.list').append(random);
}
else {
currentLength = 0;
$('.list').append($("<div class='div-25'></div>"));
currentLength = currentLength + 25;
}

})

})();
</script>

最佳答案

将数组更改为:

var arr = ["<div class='div-50' data-width='50'></div>", "<div class='div-25' data-width='25'></div>"];

关于javascript - jQuery Append 删除/隐藏以前的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42837261/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com