jQuery在DIV中附加广告JavaScript代码

时间:2015-04-24 20:36:59

标签: javascript jquery html append

我想在DIV中动态插入广告JavaScript代码

我想在身体中使用的DIV是:

<div class="madv" id="madv"></div>

需要插入DIV内的广告JavaScript代码:

<script type="text/javascript">
   document.write('<scri' + 'pt type="text/javascript" src="'
   + (document.location.protocol == 'https:' ? 'https://uat-secure' : 'http://ad-cdn')
   + '.technoratimedia.com/00/81/95/uat_19581.js?ad_size=300x250"></scri' + 'pt>');
</script>

问题是 JavaScript代码包含许多双引号,单引号和注释,导致无法正确呈现。

我需要什么? 一个脚本代码,使用jQuery或任何其他方法将上面的javascript广告代码从HEAD传递到BODY中的DIV。使用此:http://jsfiddle.net/0rnyhpcx/

1 个答案:

答案 0 :(得分:0)

尝试

document.write('<scri' + 'pt type=text/javascript src='
   + (document.location.protocol == 'https:' ? 'https://uat-secure' : 'http://ad-cdn')
   + '.technoratimedia.com/00/12/34/uat_123456.js?ad_size=300x250></scri' + 'pt>')