- 论坛徽章:
- 0
|
<script language="JavaScript">
function openBrowseWindow(path){
if(window.screen.availWidth <= 800) {
var sFeatures = ""+
" channelmode = no,"+
" directories = no,"+
" fullscreen = no,"+
" height = 700,"+
" left = 200,"+
" location = no,"+
" menubar = no,"+
" resizable = yes,"+
" scrollbars = yes,"+
" status = no,"+
" titlebar = no,"+
" toolbar = no,"+
" top = 100,"+
" width = 1000";
var winChild=window.open(path,'_blank',sFeatures,false);
}
else if(window.screen.availWidth <= 1024){
var sFeatures = ""+
" channelmode = no,"+
" directories = no,"+
" fullscreen = yes,"+
" height = 700,"+
" left = 200,"+
" location = no,"+
" menubar = no,"+
" resizable = yes,"+
" scrollbars = yes,"+
" status = no,"+
" titlebar = no,"+
" toolbar = no,"+
" top = 100,"+
" width = 1000";
var winChild=window.open(path,'_blank',sFeatures,false);
}
else{
var sFeatures = ""+
" channelmode = no,"+
" directories = no,"+
" fullscreen = no,"+
" height = 702,"+
" left = 200,"+
" location = no,"+
" menubar = no,"+
" resizable = yes,"+
" scrollbars = no,"+
" status = no,"+
" titlebar = no,"+
" toolbar = no,"+
" top = 100,"+
" width = 1002";
var winChild=window.open(path,'_blank',sFeatures,false);
}
}
</script>
请看下上边的代码!
我把我的分辨率设置成 800 *600 1024*768 都没有起到好的效果!
请知道的朋友帮我分析下可能的原因!
? |
|