猿问

SweetAlert 不适用于单引号

使用 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: '你将无法还原这个!' , = 不好。


这个难题有答案吗?


茅侃侃
浏览 159回答 1
1回答

叮当猫咪

你在这个词中有一个未转义的引号won't。如果你想使用单引号来定义你的字符串,你应该转义它,像这样:'You won\'t be able to revert this!'
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答