Javascript ~ implement embed code function

這個東西就是讓網站貼出一段code

讓使用者複製~~~~~然後可以到他們的blog之類的東西貼上這段code

我們的東西就在他blog出現了



這是讓使用者複製的code範例
-----------------------------------------------------------------------------------------

<div id="ggyy_div" style="background: #222;width:300px;height:370px;">
</div>
<script type="text/javascript">
(function() {
var gg = document.createElement('script'); gg.type = 'text/javascript'; gg.async = true;
gg.src = 'http://www.ggyy.com/xxx.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(gg);
})();
</script>

-----------------------------------------------------------------------------------------


然後這是包的js
-----------------------------------------------------------------------------------------

function assingGgyyEmbed(){
var html = '';
html = '<a href="http://bittyferrari.blogspot.com/">Bitty's blog</a>';
document.getElementById('ggyy_div').innerHTML = html;
}

assingGgyyEmbed();

-----------------------------------------------------------------------------------------


如此只要使用者貼上上面那段code

就會出現你要的東西在使用者的blog之類上面

這是result example:

-----------------------------------------------------------------------------------------
Bitty's blog

沒有留言: