gpt4 book ai didi

javascript - SweetAlert 不适用于单引号

转载 作者:行者123 更新时间:2023-12-02 23:13:10 25 4
gpt4 key购买 nike

使用 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 内)时 - 它不会工作

文本:“您将无法恢复此操作!”,= 确定

文本:“您将无法恢复此状态!”,= 不行。

这个谜题有答案吗?

最佳答案

won't 一词中有一个未转义的引号。如果您希望使用单引号来定义字符串,则应该对其进行转义,如下所示:'You won't be able to revert this!'

关于javascript - SweetAlert 不适用于单引号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57261745/

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