0

以下 javascript 代码由 eBay Partnernetwork 提供,它在 HTML 文件中运行良好,但是当我echo()在 PHP 脚本中尝试它时,它没有被正确解析。

这是代码:

 <script type='text/javascript' src='http://adn.ebay.com/files/js/min/jquery-1.6.2-min.js'></script>
 <script type='text/javascript' src='http://adn.ebay.com/files/js/min/ebay_activeContent-min.js'></script>
 <script charset='utf-8' type='text/javascript'>
 document.write("\x3Cscript type='text/javascript' charset='utf-8' src='http://adn.ebay.com/cb?programId=11&campId=XXX&toolId=10026&keyword=Huawei+MediaPad+3G&sortBy=4&width=180&height=60&font=1&textColor=333366&linkColor=333333&arrowColor=FF9900&color1=6599FF&color2=[COLORTWO]&format=ImageLink&contentType=TEXT_AND_IMAGE&enableSearch=y&usePopularSearches=n&freeShipping=n&topRatedSeller=n&itemsWithPayPal=n&descriptionSearch=n&showKwCatLink=n&excludeCatId=&excludeKeyword=&catId=171485&disWithin=200&ctx=n&autoscroll=n&title=Odys+Noon&flashEnabled=' + isFlashEnabled + '&pageTitle=' + _epn__pageTitle + '&cachebuster=' + (Math.floor(Math.random() * 10000000 ))'>\x3C/script>" );
 </script>

我认为引号有问题,document.write("...");但无论我尝试什么,它都不起作用。我逃脱了它们并用十六进制代码替换它们,但没有成功。

4

2 回答 2

1

你有没有尝试过document.write("<scr"+"ipt src=blahblahblah></scr"+"ipt>");

于 2013-03-24T01:32:44.943 回答
1

试试这个

<?php
    $str = <<<EOF
 //your script here --->(1)
EOF;
    echo $str;
?>

注:EOF;对齐很重要(最左边),尝试在更好的 ide 或至少 Notepad++ 中输入!

更新:

注意:不再像在脚本中那样在 --->(1) 中转义

于 2013-03-24T01:32:51.503 回答