以下javascript代码由eBay Partnernetwork提供,它在HTML文件中运行良好,但是当我在PHP脚本中尝试echo()
时,它没有被正确解析。
以下是代码:
<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("...");
的引号存在问题,但无论我尝试什么,它都不起作用。我逃脱了它们,并用十六进制代码替换它们,但没有成功。
答案 0 :(得分:1)
你试过document.write("<scr"+"ipt src=blahblahblah></scr"+"ipt>");
答案 1 :(得分:1)
试试这个
<?php
$str = <<<EOF
//your script here --->(1)
EOF;
echo $str;
?>
注意:EOF;对齐很重要(最左边),尝试用更好的ide或至少Notepad ++键入它!
<强>更新强>
注意:不再在内部转义---&gt;(1),就像你的脚本
一样