我有一种方法可以要求用户编辑文本,
swal({
text: "Edit your Task",
content: {
element: "input",
attributes: {
value: data,
}
},
buttons:{
cancel: {
text: 'Cancel',
value: 'cancel'
},
edit:{
text: 'Edit',
value: 'edit'
}
}
}).then((value)=>{
console.log(value);
})
这是我的代码,现在是如何在用户单击“确定”按钮时获取更新的输入文本