gpt4 book ai didi

php - 语法错误 : Unexpected EOF

转载 作者:行者123 更新时间:2023-11-30 10:37:47 26 4
gpt4 key购买 nike

我将此代码添加到我的 php 页脚中:当我在 HTML 文档中使用相同的语法时,一切都适合我。

   <body>
...

<script type="text/javascript">

// Browser detection
function checkBrowserName(name){
var agent = navigator.userAgent.toLowerCase();
if (agent.indexOf(name.toLowerCase())>-1) {
return true;
}
return false;
}

if(checkBrowserName('opera')){
/* load nothing */
}

else if(checkBrowserName('')) {
/* else if(checkBrowserName('firefox') || ('msie') || ('safari') || ('konqueror') || ('omniweb') || ('webtv') || ('icab') || ('compatible')) { */

// Insert script
document.write('<script src="assets/javascripts/hyphenate.min.js" type="text/javascript"></script>');
document.write('<\/script>');

// Script options
document.write('<script type="text/javascript">');
document.write('Hyphenator.config({');
document.write('displaytogglebox : false,');
document.write('minwordlength : 4');
document.write('});');
document.write('Hyphenator.run();');
document.write('<\/script>');

}
</script>
...
</body>

我的换行符有问题吗?

当我编写这样的代码时,它会为我工作:

<script type="text/javascript" src="assets/javascripts/hyphenate.min.js"></script>
<script type="text/javascript">

Hyphenator.config({
displaytogglebox : false,
minwordlength : 4
});
Hyphenator.run();

</script>

谢谢你的帮助
奥尼

最佳答案

你不能写</script>成字符串,因为解析到此结束。
只是逃避它:

document.write('<script src="assets/javascripts/hyphenate.min.js" type="text/javascript"><\/script>');

(就像你之前做的那样......)

关于php - 语法错误 : Unexpected EOF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12976772/

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