今天忽然想在本身的博客上插入一首背景音樂,各大音樂廠商都有外鏈提供,好比網易雲音樂,在歌曲的網頁版就能夠找到外鏈生成的按鈕,如圖所示:javascript
點擊生成外鏈,跳轉到下面的頁面html
當你興沖沖複製html代碼到你的博客園,發現是不生效的,由於博客園是不支持 iframe 標籤的。因此,你須要動動你的小腦筋。java
個人思路是,對iframe關鍵字進行Unicode加密,而後使用Js的unescape方法進行解密,字符串拼接一下便可。完整代碼以下:app
<script type="text/javascript"> var s = unescape("\u0069\u0066\u0072\u0061\u006d\u0065"); var f = '<'+s+' frameborder="no" border="0" marginwidth="0" marginheight="0" width="280" height="52" src="//music.163.com/outchain/player?type=2&id=516657051&auto=1&height=32" class="music" style="z-index: 0;right: 0PX;display: block;bottom: 60px;position: fixed;"></'+s+'>'; $("body").append(f); //網易雲音樂 </script>
至於效果,看個人博客就行了。加密