gpt4 book ai didi

通过 PHP 生成的 Javascript ILLEGAL

转载 作者:行者123 更新时间:2023-11-29 17:01:23 25 4
gpt4 key购买 nike

以下代码有效:

var r = confirm('Are you sure you want to delete this category?\nDeleting the category will leave child items without a category');

但是,当通过 php 生成完全相同的代码时,它会传递一个 Javascript Unexpected token ILLEGAL 错误...求助?

echo "<script>var r = confirm('Are you sure you want to delete this category?\nDeleting the category will leave child items without a category');</script>";

是否可以在不使用 ajax 等的情况下执行此操作?我已经知道如何处理弹出窗口中的事件,只是在确认框出现时遇到了一些问题。我可以只使用一个表单并获得预期的功能,但我认为确认框会更好。

最佳答案

您需要两次转义新行,一次用于 JS,一次用于 PHP:

echo "<script>var r = confirm('Are you sure you want to delete this category?\\nDeleting the category will leave child items without a category');</script>";

关于通过 PHP 生成的 Javascript ILLEGAL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27581468/

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