javascript - If else 语句不适用于待办事项列表

标签 javascript html css if-statement

我正在创建一个待办事项列表,并且有两个 ul 列表,一个具有 id 待办事项,另一个具有 id 已完成。我希望这样,当您创建列表项并单击勾号时,它会转移到已完成的列表,当您再次单击勾号时,它会转移回待办事项列表。

但是现在的问题是,当我单击一次勾号时,它会移至已完成的列表,但当我再次单击它时,它不会执行任何操作?您可以通过创建几个列表项然后单击加号按钮来测试这一点。

我正在使用三元运算符。我做错了什么?

因为这似乎不起作用:

var target = [id === "to-do"]
? document.getElementById("completed")
: document.getElementById("to-do");

var completeSVG =
  '<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 52 52" style="enable-background:new 0 0 52 52;" xml:space="preserve"> <g> <path d="M38.252,15.336l-15.369,17.29l-9.259-7.407c-0.43-0.345-1.061-0.274-1.405,0.156c-0.345,0.432-0.275,1.061,0.156,1.406 l10,8C22.559,34.928,22.78,35,23,35c0.276,0,0.551-0.114,0.748-0.336l16-18c0.367-0.412,0.33-1.045-0.083-1.411 C39.251,14.885,38.62,14.922,38.252,15.336z"/> </svg>';
var removeSVG =
  '<svg version="1.1" id="Capa_1" id="removeB" class="removeB" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 328.51 328.51" style="enable-background:new 0 0 328.51 328.51;" xml:space="preserve"> <polygon points="229.044,88.858 164.255,153.647 99.466,88.858 88.858,99.466 153.647,164.255 88.858,229.044 99.466,239.651 164.255,174.862 229.044,239.651 239.651,229.044 174.862,164.255 239.651,99.466 		"/> </svg>';

function removeItem() {
  var item = this.parentNode.parentNode.parentNode;
  item.removeChild(this.parentNode.parentNode);
}

function completeItem() {
  var completeitem = this.parentNode.parentNode;
  var completeparent = completeitem.parentNode;

  var id = completeparent.id;

  var target = [id === "to-do"]
    ? document.getElementById("completed")
    : document.getElementById("to-do");

  completeparent.removeChild(completeitem);
  target.prepend(completeitem);
}

document.getElementById("button-plus").addEventListener("click", function() {
  var value = document.getElementById("input").value;
  if (value) {
    addItem(value);
    document.getElementById("input").value = "";
  }
});
function addItem(text) {
  var list = document.getElementById("to-do");

  item = document.createElement("li");
  item.innerText = text;
  var buttons = document.createElement("div");
  buttons.classList.add("buttons");

  var remove = document.createElement("button");
  remove.classList.add("remove");
  remove.innerHTML = removeSVG;
  remove.addEventListener("click", removeItem);

  var complete = document.createElement("button");
  complete.classList.add("complete");
  complete.innerHTML = completeSVG;
  complete.addEventListener("click", completeItem);

  buttons.appendChild(remove);
  buttons.appendChild(complete);
  item.appendChild(buttons);

  list.prepend(item);
}
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

header {
  width: 100%;
  height: 70px;
  background: rgb(162, 193, 60);
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  box-shadow: 0 0 5px rgb(159, 160, 155);
  padding: 0 10px 0 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

header input {
 appearance: none;
 text-indent: 10px;
 border-bottom-right-radius: 25px;
 border-top-right-radius: 25px;
 border-top-left-radius: 12px;
 border-bottom-left-radius: 12px;
 width: 100%;
 background: rgb(233, 255, 170);
 height: 45px;
 font-family: Century Gothic;
 border: none;
 box-sizing: border-box;
 padding-right: 60px;
}

header button {
position: absolute;
right: 10px;
top: 13.5px;
height: 43px;
width: 50px;
border-bottom-right-radius: 25px;
border-top-right-radius: 25px;
appearance: none;
border: none;
background: rgb(238, 255, 173);
border-left: 2px solid rgb(162, 193, 60);
cursor: pointer;
}

button svg {
z-index: 6;
position: absolute;
border-bottom-right-radius: 25px;
border-top-right-radius: 25px;
right: 0;
top: -1px;
}/*
.container{
  width: 100%;
  margin: auto;
  border: 1px solid black;
}*/
 .to-do {
  width: 100%;
  float: left;
  list-style-type: none;
   box-sizing: border-box;
   padding: 0;
  /*border: 1px lid black;*/
}
.to-do li{
  width: 85%;
  background: white;
  box-shadow: 0 0 5px rgb(159, 160, 155, 0.5);
  min-height: 50px;
  margin: auto;
  border-radius: 5px;
  box-sizing: border-box;
  font-family: Century Gothic;
  padding: 0 105px 0 25px;
  position: relative;
  margin-top: 25px;
  display: flex;
  align-items: center;
  
}
.to-do li .buttons{
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 100px;
  background: white;
}
.to-do li .buttons button{
  appearance: none;
  width: 47.5px;
  height: 50px;
  box-sizing: border-box;
  position: relative;
  background: white;
  border: none;
  cursor: pointer;
}
.to-do li .buttons button:last-of-type:before{
  content: '';
  width: 0.8px;
  height: 29px;
  background: gray;
  opacity: 0.4;
  float: left;
  margin-left: -6px;
}/*
.to-do li button:nth-child(1):hover .x-fill{
  fill: red;
  transition-duration: 0.3s;
}
.to-do li button:nth-child(2):hover .tick-fill{
  fill: orange;
  transition-duration: 0.3s;
}*/
.complete svg{
  fill: green;
}
.complete svg:hover{
  fill: orange;
  transition-duration: 0.3s;
}
.remove svg{
  fill: gray;
  opacity: 0.8;
}
.remove svg:hover{
  fill: red;
  opacity: 0.7;
  transition-duration: 0.3s;
}
#completed{
  margin-top: 25px;
}
<head>

<title>To do List App</title>

</head>
<body>
<header>
  <input type="text" placeholder="Next on my to do list is...." id="input">
  <button id="button-plus">
 <svg width="48" height="43" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
  <rect fill="#0186b2" height="28" id="svg_1" stroke="#000000" stroke-opacity="0" stroke-width="5" width="4" x="19.5" y="8.5"/>
  <rect fill="#47bcbc" height="3" id="svg_2" stroke="#000000" stroke-dasharray="null" stroke-linecap="null" stroke-linejoin="null" stroke-opacity="0" stroke-width="5" width="28" x="7.5" y="20.5"/>
</svg>
   
    </svg>
  </button>
</header>
  <div class="container">
<ul id="to-do" class="to-do">
  </ul>
    <ul id="completed" class="to-do">
      
    </ul>
  </div>
  
</body>

最佳答案

您必须使用三元运算符,例如 (condition)?true:false 而不是 [condition]?true:false

var completeSVG =
  '<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 52 52" style="enable-background:new 0 0 52 52;" xml:space="preserve"> <g> <path d="M38.252,15.336l-15.369,17.29l-9.259-7.407c-0.43-0.345-1.061-0.274-1.405,0.156c-0.345,0.432-0.275,1.061,0.156,1.406 l10,8C22.559,34.928,22.78,35,23,35c0.276,0,0.551-0.114,0.748-0.336l16-18c0.367-0.412,0.33-1.045-0.083-1.411 C39.251,14.885,38.62,14.922,38.252,15.336z"/> </svg>';
var removeSVG =
  '<svg version="1.1" id="Capa_1" id="removeB" class="removeB" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 328.51 328.51" style="enable-background:new 0 0 328.51 328.51;" xml:space="preserve"> <polygon points="229.044,88.858 164.255,153.647 99.466,88.858 88.858,99.466 153.647,164.255 88.858,229.044 99.466,239.651 164.255,174.862 229.044,239.651 239.651,229.044 174.862,164.255 239.651,99.466 		"/> </svg>';

function removeItem() {
  var item = this.parentNode.parentNode.parentNode;
  item.removeChild(this.parentNode.parentNode);
}

function completeItem() {
  var completeitem = this.parentNode.parentNode;
  var completeparent = completeitem.parentNode;

  var id = completeparent.id;
    debugger;
  var target = (id === "to-do")
    ? document.getElementById("completed")
    : document.getElementById("to-do");

  completeparent.removeChild(completeitem);
  target.prepend(completeitem);
}

document.getElementById("button-plus").addEventListener("click", function() {
  var value = document.getElementById("input").value;
  if (value) {
    addItem(value);
    document.getElementById("input").value = "";
  }
});
function addItem(text) {
  var list = document.getElementById("to-do");

  item = document.createElement("li");
  item.innerText = text;
  var buttons = document.createElement("div");
  buttons.classList.add("buttons");

  var remove = document.createElement("button");
  remove.classList.add("remove");
  remove.innerHTML = removeSVG;
  remove.addEventListener("click", removeItem);

  var complete = document.createElement("button");
  complete.classList.add("complete");
  complete.innerHTML = completeSVG;
  complete.addEventListener("click", completeItem);

  buttons.appendChild(remove);
  buttons.appendChild(complete);
  item.appendChild(buttons);

  list.prepend(item);
}
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

header {
  width: 100%;
  height: 70px;
  background: rgb(162, 193, 60);
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  box-shadow: 0 0 5px rgb(159, 160, 155);
  padding: 0 10px 0 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

header input {
 appearance: none;
 text-indent: 10px;
 border-bottom-right-radius: 25px;
 border-top-right-radius: 25px;
 border-top-left-radius: 12px;
 border-bottom-left-radius: 12px;
 width: 100%;
 background: rgb(233, 255, 170);
 height: 45px;
 font-family: Century Gothic;
 border: none;
 box-sizing: border-box;
 padding-right: 60px;
}

header button {
position: absolute;
right: 10px;
top: 13.5px;
height: 43px;
width: 50px;
border-bottom-right-radius: 25px;
border-top-right-radius: 25px;
appearance: none;
border: none;
background: rgb(238, 255, 173);
border-left: 2px solid rgb(162, 193, 60);
cursor: pointer;
}

button svg {
z-index: 6;
position: absolute;
border-bottom-right-radius: 25px;
border-top-right-radius: 25px;
right: 0;
top: -1px;
}/*
.container{
  width: 100%;
  margin: auto;
  border: 1px solid black;
}*/
 .to-do {
  width: 100%;
  float: left;
  list-style-type: none;
   box-sizing: border-box;
   padding: 0;
  /*border: 1px lid black;*/
}
.to-do li{
  width: 85%;
  background: white;
  box-shadow: 0 0 5px rgb(159, 160, 155, 0.5);
  min-height: 50px;
  margin: auto;
  border-radius: 5px;
  box-sizing: border-box;
  font-family: Century Gothic;
  padding: 0 105px 0 25px;
  position: relative;
  margin-top: 25px;
  display: flex;
  align-items: center;
  
}
.to-do li .buttons{
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 100px;
  background: white;
}
.to-do li .buttons button{
  appearance: none;
  width: 47.5px;
  height: 50px;
  box-sizing: border-box;
  position: relative;
  background: white;
  border: none;
  cursor: pointer;
}
.to-do li .buttons button:last-of-type:before{
  content: '';
  width: 0.8px;
  height: 29px;
  background: gray;
  opacity: 0.4;
  float: left;
  margin-left: -6px;
}/*
.to-do li button:nth-child(1):hover .x-fill{
  fill: red;
  transition-duration: 0.3s;
}
.to-do li button:nth-child(2):hover .tick-fill{
  fill: orange;
  transition-duration: 0.3s;
}*/
.complete svg{
  fill: green;
}
.complete svg:hover{
  fill: orange;
  transition-duration: 0.3s;
}
.remove svg{
  fill: gray;
  opacity: 0.8;
}
.remove svg:hover{
  fill: red;
  opacity: 0.7;
  transition-duration: 0.3s;
}
#completed{
  margin-top: 25px;
}
<head>

<title>To do List App</title>

</head>
<body>
<header>
  <input type="text" placeholder="Next on my to do list is...." id="input">
  <button id="button-plus">
 <svg width="48" height="43" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
  <rect fill="#0186b2" height="28" id="svg_1" stroke="#000000" stroke-opacity="0" stroke-width="5" width="4" x="19.5" y="8.5"/>
  <rect fill="#47bcbc" height="3" id="svg_2" stroke="#000000" stroke-dasharray="null" stroke-linecap="null" stroke-linejoin="null" stroke-opacity="0" stroke-width="5" width="28" x="7.5" y="20.5"/>
</svg>
   
    </svg>
  </button>
</header>
  <div class="container">
<ul id="to-do" class="to-do">
  </ul>
    <ul id="completed" class="to-do">
      
    </ul>
  </div>
  
</body>

关于javascript - If else 语句不适用于待办事项列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56901468/

相关文章:

javascript - 将 tumble-bar.html 导入 index.html 的问题

javascript - Bootstrap 表悬停不起作用

javascript - 如何防止javascript中的事件冒泡

html - 导航菜单导致整个导航层消失 Html/CSS

html - css 下拉菜单在悬停时显示每个子元素上的图像

css - 无法在我网站的特定区域滚动

Javascript检查对象数组中是否存在字符串

javascript - 正则表达式 - 从文本输入中删除美元符号

html - 居中的 div 在顶部被切断?

javascript - 如何设置动态图片路径