使用 SweetAlert 时,我在使用单引号时遇到问题,例如下面的代码有效
<script>
function test()
{
Swal.fire({
title: 'Are you sure?',
text: "You won't be able to revert this!",
type: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes, delete it!'
}).then((result) => {
if (result.value) {
Swal.fire(
'Deleted!',
'Your file has been deleted.',
'success'
)
}
})
}
</script>
但是当用单引号(在 php echo 中)使用它时 - 它不起作用
文本:“您将无法还原此内容!” , = 好的
text: '你将无法还原这个!' , = 不好。
这个难题有答案吗?
叮当猫咪
相关分类