新新手!!下面的javascript脚本是什么意思?
<td style="width: 50%; height: 112px; text-align: center;" class="tba">
<script type="text/javascript">
<!--
google_ad_client = "pub-2890407032899429";
/* 728x90, 创建于 10-9-11 */
google_ad_slot = "8816142886";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</td>
就是上面这一句 src="http://pagead2.googlesyndication.com/pagead/show_ads.js"
不知道是什么意思, 我是看别人的代码,看到的,在程序中也找不到 show_ads.js 这个javascript文件啊,怎么回事
求高手解决!?
------解决方案-------------------- <script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
这句是引用外部js包,也就是相当于你把js写好打包完然后在页面中直接导入,跟编程中import类似.
比如你要用jquery框架,也需要将其包用这话方式导入才能用jquery一些方法...
------解决方案--------------------你可以到相应的路径把该js包复制到你的解决方案里 然后导入(改路径)
------解决方案--------------------楼上的说得差不多了,
http://pagead2.googlesyndication.com/pagead/show_ads.js //lz把这个放到浏览器里运行一下,提示下载,下载下来看一下, src就是来源的意思
------解决方案--------------------
------解决方案--------------------google的广告嘛
------解决方案--------------------引入外部的js文件,src是文件的url。
------解决方案--------------------引用外部JS可以是网络资源