今天天气好晴朗处处好风光,好天气好开始,图老师又来和大家分享啦。下面给大家推荐IE中直接运行显示当前网页中的图片 推荐,希望大家看完后也有个好心情,快快行动吧!
【 tulaoshi.com - Web开发 】
使用方法直接在已打开网页的IE地址栏中输入即可
1.显示网页中的所有图片
代码如下:
javascript:s='';for (i=0;idocument.images.length;i++){s+='img src='+document.images[i].src+'br'};if(s!=''){document.write('center'+s+'/center');void(document.close())}else{alert('No images!')}
2.显示网页中除图片的其他
代码如下:
javascript:for(i=0;idocument.images.length;i++){void(document.images[i].style.visibility='hidden')}
3.网页缩小0.5倍
代码如下:
javascript:void(s=document.body.style);void(z=s.getAttribute('zoom'));if(z){s.setAttribute('zoom',(parseInt(z)-50)+'%');}else s.setAttribute('zoom','50%')
4.网页放大1.5倍
代码如下:
javascript:void(s=document.body.style);void(z=s.getAttribute('zoom'));if(z){s.setAttribute('zoom',(parseInt(z)+50)+'%');}else s.setAttribute('zoom','150%')
5.显示网页源代码(对于加密过的可以直接显示其加密前的源代码)
代码如下:
javascript:s=document.documentElement.outerHTML;document.write('body/body');document.body.innerText=s;
来源:http://www.tulaoshi.com/n/20160219/1600712.html
看过《IE中直接运行显示当前网页中的图片 推荐》的人还看了以下文章 更多>>