为了账号安全,请及时绑定邮箱和手机立即绑定

单击“添加任务”后如何让我的文本出现在任务下?

单击“添加任务”后如何让我的文本出现在任务下?

幕布斯6054654 2021-11-25 19:39:00
我正在尝试向我的“任务”添加自定义文本,当我单击“任务列表”中的添加文本按钮时,它只出现在地址栏中。目标是在单击添加任务后在“任务列表”下创建一个列表项。第一个代码块是我的 app.js 文件,接下来的代码块是我的 index.html 文件。//Load all event listenersloadEventListeners();// Load all event listenersfunction loadEventListeners() {    // Add task event    form.addEventListener('submit', addTask);}// Add taskfunction addTask(e) {    if(taskInput.value === '') {        alert('Add a task');    }    // Create li element    const li = document.createElement('li');    // Add class    li.className = 'collection-item';    // Create text node and append to li    li.appendChild(document.createTextNode(taskInput.value));    // Create new link element    const link = document.createElement('a');    // Add class    link.className = 'delete-item secondary-content';    // Add icon html    link.innerHTML = '<i class="fa fa-remove"></i>';    // Append the link to li    li.appendChild(link);    // Append li to ul    taskList.appendChild(li);    // Clear Input     taskInput.value = '';    e.preventDefault();}
查看完整描述

1 回答

?
萧十郎

TA贡献1815条经验 获得超13个赞

只是一些修改:


const btn = document.querySelector('.btn');

const taskInput = document.getElementById('task');

const taskList = document.querySelector('.container ul');


btn.addEventListener('click', addTask);


// Add task

function addTask(e) {


    if(taskInput.value === '') {

        alert('Add a task');

    }



    // Create li element

    const li = document.createElement('LI');


    // Add class

    li.classList.add('collection-item');

    // Create text node and append to li

    li.appendChild(document.createTextNode(taskInput.value));

    // Create new link element

    const link = document.createElement('a');


    // Add class

    link.classList.add('delete-item' , 'secondary-content');


    // Add icon html

    link.innerHTML = '<i class="fa fa-remove"></i>';

    // Append the link to li

    li.appendChild(link);


    // Append li to ul

    taskList.appendChild(li);


    e.preventDefault();

}


document.querySelector('.clear-tasks').addEventListener('click',()=> {  

   // Clear Input 

    taskInput.value = '';

});


查看完整回答
反对 回复 2021-11-25
  • 1 回答
  • 0 关注
  • 133 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信