所以我有一个静态的无序列表和一个动态的列表项,每个列表项中都带有p标签。我试图双击要在其中出现输入框的双击进行单独编辑,您将能够对其进行编辑,然后在模糊时,输入框将消失并且文本将被编辑。问题在于模糊文本值未定义,我不确定为什么,如果有人可以对此有所了解,将不胜感激。
$(document).ready(function () {
addText();
deleteText();
$newItemList.on('dblclick','p',editText);
});
const deleteText = function(){
$removeBtn.on('click',function() {
$('.finishedItem').remove();
$('.trash').remove();
})
};
const loseFocus = function(){
var newPara = document.createElement('p');
newPara.innerHTML = $('#temp').value;
if(newPara.innerHTML){
$('#temp').parent().prepend(newPara);
$('#temp').remove();
}
else{
showalert("replacement text cannot be empty","alert-warning");
}
};