-
-
Save zrt/212172807eadede0c95ba784caad6031 to your computer and use it in GitHub Desktop.
Disqus点击加载
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<button id="load-disqus" onclick="disqus.load();"> | |
加载Disqus | |
</button> | |
<div id="disqus_thread"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var disqus = { | |
load : function disqus(){ | |
var disqus_shortname = 'disqus'; | |
if(typeof DISQUS !== 'object') { | |
(function () { | |
var s = document.createElement('script'); s.async = true; | |
s.type = 'text/javascript'; | |
s.src = '//' + disqus_shortname + '.disqus.com/embed.js'; | |
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s); | |
}()); | |
$('#load-disqus').remove(); ///加载后移除按钮 | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment