2016-10-11 7 views
4

다음 표준 코드가 Google DFP에 의해 제공됩니다. 이Google DFP 제공 스크립트가 파서 차단, 교차 원본 스크립트로 나열되었습니다.

<script> 
(function() { 
    var useSSL = 'https:' == document.location.protocol; 
    var src = (useSSL ? 'https:' : 'http:') + 
    '//www.googletagservices.com/tag/js/gpt.js'; 
    document.write('<scr' + 'ipt src="' + src + '"></scr' + 'ipt>'); 
})(); 
</script> 

document.write을 사용하여 구현되어 있기 때문에 불행히도이 구글 자체에서 표준 DFP 스크립트이기 때문에이 정말 이상한 찾을 파서 차단, 크로스 기원 스크립트로 표시되고있다. 내가 사용해야하는 업데이트 된 버전이 있습니까?

+1

을 나는 <스크립트 SRC = "https://www.googletagservices.com/tag/js/gpt.js">에 스크립트를 변경 여전히 문제가되지 않습니다 해결됨. gpt.js는 2 개의 document.write를 사용하여 2 개의 스크립트를 더 작성합니다. 내 URL은 https://dnd-checker.talentpark.net/입니다. 누군가 해결책을 찾을 수 있습니까? –

답변

1

당신은이를 사용할 수 있습니다

(function() { 
    var gads = document.createElement('script'); 
    gads.async = true; 
    gads.type = 'text/javascript'; 
    var useSSL = 'https:' === document.location.protocol; 
    gads.src = (useSSL ? 'https:' : 'http:') + 
     '//www.googletagservices.com/tag/js/gpt.js'; 
    var node = document.getElementsByTagName('script')[0]; 
    node.parentNode.insertBefore(gads, node); 
}());