是否可以添加外部.js文件以放入我现在设置的当前图像位置?我对javascript和php相当新,所以任何帮助都会非常感激。
echo "<div style=\"margin-bottom:50px;clear:both\">";
if ($result == 8) {echo "<div style=\"width:300px;height:250px;background-color:#f6f6dd;margin-left:10px;margin-bottom:20px;\">";
**echo "<!-- No script tag -->
<a href=\"http://" target=\"_blank\"><img border=\"0\" width=\"100%\" height=\"auto\" src=\"myadspt.png\" alt=\"Ad spot text goes here\"></a>";**
echo "</div>";}
对不起,我之前也应该提到这个部分。此.php代码用于包含广告位置的简报。需要放在此.php代码中的.js文件是上传到外部新闻网站的.swf广告(我称之为&#34;网站A&#34;)在&#34; SITE A& #34;,广告上有自己的.js脚本。
当此广告上传到&#34; SITE A&#34;时,我希望它自动放入简报中,这样对我来说就不那么麻烦了,而且#34; SITE A& #34;它会计算每次发送简报时广告获得的点击次数。
这是下面的.js脚本。希望这有助于澄清我想要做什么。
<!-- Global Ad Manager javascript file -->
<script type="text/javascript" src="http://www.mysite.js"></script>
<!-- Ad Manager call to display ads for position testa-->
<script type="text/javascript">
TNCMS.AdManager.render
({
domain: 'www.mysite.com',
secureDomain: 'mysite-dot-com.',
section: testa',
region: 'test',
slot: '1'
});
</script>
答案 0 :(得分:0)
使用php标签突破php,我不会使用echo而只是简单地使用脚本标记。 这是一个html标签而不是php代码。
<?php
//your php code here
?>
<script src="http://url.com/path/script.js"></script>
建议将此标记放入“head”标记中,但您可以将其放在文档正文中(这不是一个好习惯)。
答案 1 :(得分:0)
PHP只打印HTML。所以无论你想用HTML做什么,你只需要使用PHP echo
那个HTML。所以对于这种情况:
echo '<script src="http://url.com/path/script.js"></script>';