gpt4 book ai didi

javascript - 如何在Javascript中的嵌套元素中设置占位符属性

转载 作者:行者123 更新时间:2023-12-04 09:32:21 25 4
gpt4 key购买 nike

此代码在列表元素中创建嵌套输入,但占位符不显示:

var li = document.createElement('li');
this._new_input_tag = document.createElement('input');
li.className = 'tagger-new';
li.placeholder = "Write here";
我试过
document.getElementById('tagger-new').placeholder = "Write here";
但这完全删除了输入。
谢谢你的帮助!

最佳答案

你的代码中有错误的原因是你放了一些不清楚的东西this创建元素时的关键字

input = document.createElement('input');
input.setAttribute('placeholder', 'Write Here...');
document.body.appendChild(input)

关于javascript - 如何在Javascript中的嵌套元素中设置占位符属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62780257/

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