使用 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: '你将无法还原这个!' , = 不好。这个难题有答案吗?
1 回答
叮当猫咪
TA贡献1776条经验 获得超12个赞
你在这个词中有一个未转义的引号won't
。如果你想使用单引号来定义你的字符串,你应该转义它,像这样:'You won\'t be able to revert this!'
添加回答
举报
0/150
提交
取消