我想操纵confirm
并插入selected Attribute
中。
我面临的第一个问题是confirm
与[object.object]
一起出现,并且
为了处理它,我尝试使用JSON.Stringfy()
将对象转换为字符串。到目前为止,我得到了string
。
因此,我不得不尝试使用JSON.parse()
。没有任何帮助。
我真的很有趣err.message
...
我需要使用受操纵的Confirm
。有想法吗?
function myFunction() {
alert("hallo");
let hier = ({
title: "Destroy planet?",
message: "Do you want to activate the Deathstar now? This cannot be undone.",
buttons: {
cancel: {
label: '<i class="fa fa-times"></i> Cancel'
},
confirm: {
label: `<select> <
option value = "volvo" > Volvo < /option> <
option value = "saab" > Saab < /option> <
option value = "mercedes" > Mercedes < /option> <
option value = "audi" > Audi < /option> <
/select> Confirm`
}
},
callback: function(result) {
console.log('This was logged in the callback: ' + result);
}
});
hier = JSON.parse(hier);
confirm(hier);
}
<!DOCTYPE html>
<html lang="en" dir="ltr">
<body>
<button type="button" onclick="myFunction()">try</button>
</body>
</html>