1.
reg add "HKCU\Software\Microsoft\Internet Explorer\MenuExt\zoomIn" /f /ve /t REG_SZ /d "C:\Windows\zoomIn.htm"
2.
把zoomIn.htm复制到C:\Windows下了(内容如下)
<script language="javascript">
function pluginExec(st) {
var zoom = document.body.style.zoom;
if(!zoom)
zoom = '100%';
if(zoom.match(/^\d+%$/)) {
var iZoom = parseInt(zoom.slice(0, zoom.length-1));
if(iZoom > 50) {
iZoom = iZoom - 10;
document.body.style.zoom = iZoom.toString() + '%';
}
}
}
</script>
但是实现不了网页缩小的功能
[ Last edited by kioskboy on 2009-5-28 at 12:13 ]
reg add "HKCU\Software\Microsoft\Internet Explorer\MenuExt\zoomIn" /f /ve /t REG_SZ /d "C:\Windows\zoomIn.htm"
2.
把zoomIn.htm复制到C:\Windows下了(内容如下)
<script language="javascript">
function pluginExec(st) {
var zoom = document.body.style.zoom;
if(!zoom)
zoom = '100%';
if(zoom.match(/^\d+%$/)) {
var iZoom = parseInt(zoom.slice(0, zoom.length-1));
if(iZoom > 50) {
iZoom = iZoom - 10;
document.body.style.zoom = iZoom.toString() + '%';
}
}
}
</script>
但是实现不了网页缩小的功能
[ Last edited by kioskboy on 2009-5-28 at 12:13 ]
