IE地址栏的秘密
IE地址栏的秘密
完全打开页面后,在该页的在地址栏或按Ctrl+O输入以下代码,回车
1.显示网页中的所有图片
javascript:s='';for (i=0;i
'};if(s!=''){document.write(''+s+' ');void(document.close())}else{alert('No images!')}
2.显示网页中除图片的其他
javascript:for(i=0;i
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('');document.body.innerText=s;
完全打开页面后,在该页的在地址栏或按Ctrl+O输入以下代码,回车
1.显示网页中的所有图片
javascript:s='';for (i=0;i
'};if(s!=''){document.write('
2.显示网页中除图片的其他
javascript:for(i=0;i
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('');document.body.innerText=s;
0 条留言
我要留言