gpt4 book ai didi

javascript - 如何在 PHP 中的 <script> 标记内添加 Javascript

转载 作者:行者123 更新时间:2023-11-29 22:46:44 25 4
gpt4 key购买 nike

我目前正在尝试将此代码添加到 PHP 文件中:

if (contains($current_url, $bad_urls_2)) {
echo '<script>
$('body :not(script,sup)').contents().filter(function() {
return this.nodeType === 3;}).replaceWith(function() {
return this.nodeValue.replace(/[®]/g, '<sup>$&</sup>');
});</script>';
}

此问题是它输出此错误:
错误:语法错误,意外的“正文”(T_STRING),期待“,”或“;”:语法错误,意外的“正文” (T_STRING), expecting ',' or ';'

对于这个问题,if 语句不是必需的,因为它只检查是否有单词在 URL 中,然后仅将此代码应用于匹配它们的页面。

最佳答案

使用此处文档 https://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc

<?php

if (contains($current_url, $bad_urls_2)) {
echo <<<JS
<script>
$('body :not(script,sup)').contents().filter(function() {
return this.nodeType === 3;}).replaceWith(function() {
return this.nodeValue.replace(/[®]/g, '<sup>$&</sup>\);
});
</script>
JS;
}

关于javascript - 如何在 PHP 中的 &lt;script&gt; 标记内添加 Javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58255187/

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