gpt4 book ai didi

php - PHP/jQuery Uncaught SyntaxError : Unexpected token ILLEGAL

转载 作者:行者123 更新时间:2023-12-03 08:09:37 25 4
gpt4 key购买 nike

我在php和jQuery/Javascript之间有问题...它不会显示或无法工作。

我的代码:

if($bottom_1_banner == "true"){
//$data_AD .= '$(\'.ban_bottom\').html(\''.htmlentities($bottom_banner).'\').text();';
$data_AD .= '$(\'.ban_bottom\').html("'.htmlspecialchars($bottom_banner).'").text();';
}

错误日志:(Chrome/Safari)
<script type="text/javascript">
$(document).ready(function() {
$('.ban_bottom').html("&lt;!-- xxxxxxx --&gt;
******index.php:11 Uncaught SyntaxError: Unexpected token ILLEGAL******
&lt;script type=&quot;text/javascript&quot;&gt;
xxxxxxx_bid = &quot;xxxxxxxxxxx&quot;;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://xxx.xxxxxx.com/k.js&quot;&gt;&lt;/script&gt;
&lt;!-- xxxxxxxx --&gt;").text(); });
</script>

要么

编辑:将图像转换为文本。

最佳答案

我在JavaScript的新行中也遇到了同样的问题。如果您从MySql获取值,则可以尝试以下操作:

$php_string = str_replace('<br />','<br />\\',nl2br($php_string));

首先将换行符替换为html <br/>标记,然后在生成的 <br/>标记后添加\;因此,JS行始终以\结尾,表示JavaScript代码中正确的新行。

关于php - PHP/jQuery Uncaught SyntaxError : Unexpected token ILLEGAL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6843715/

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