网页内容显示不全问题

时间:2022-04-28 18:26:25
我用的是apache+php+informix
但是查询数据库内容后在一个页面上显示不全,下面的内容在浏览器中看不到了,
但是将这个页面拷贝出来,内容完全都有,
实在不明白该如何解决?
请问各位大侠该如何解决(不用分页显示的方法)

14 个解决方案

#1


将这个页面拷贝出来,内容完全都有?

有这样子的事情?给个连接看看。

#2


内网的连接,现在无法看到

#3


检查数据,看看里面是不是有引起不能显示的特殊字符,比如半角引号尖括号等。

#4


我把该网页内容另存为一个页面,则dw下面看没有发现不匹配的标记

#5


换个浏览器试试看看, ie有的时候会出这种问题的, 用firefox看,估计就全了. 或者在别人及其上试试看.

#6


你是不是用了frame/iframe把滚动条屏蔽掉了,或者用了层。

#7


怀疑是不是有些HTML标记不正确,比如:<title>标题 /title>之类的.

#8


可能是浏览器里面一些js的菜单效果兼容的不好,
不过我只遇到过firefox看不到,但ie能看到的,呵呵

#9


是不是跟你的Server的Charset有关系?比如支持UTF8或者GB2312之类的。转一下浏览器的编码,看一下效果。

#10


谢谢楼上各位好的建议,我可能说的不够
清楚,
情况是这样的:如果查询后返回的内容较少,则可以完全显示,
如果查询后返回的内容比较低,则页面就显示不全!
而将该页的内容全部拷贝下来,放到记事本中,内容是全的!
我实在不能理解,请各位给点灵感?

#11




应该是如果查询后返回的内容比较多

#12


css定义是不是限制了不能撑破表格
比如有这样的语句
table { 
table-layout: fixed;
word-wrap:break-word;
}
div { 
word-wrap:break-word;
}
如果是这样 将table的
width=100% height=100%

#13


我现在估计有可能时table的问题,但是目前还没有发现,我定义的css如下,请帮忙看一下,万分感谢
  BODY      { font-family: Tahoma,Georgia; color: #000000; font-size: 9pt;margin-top: 5px;margin-left: 20px;margin-right: 20px;margin-bottom: 5px; }
  P         { font-family: Tahoma,Georgia; color: #000000; font-size: 9pt }
  TD        { font-family: Tahoma,Georgia; color: #000000; font-size: 9pt }
  TEXTAREA  { font-family: Tahoma,Georgia; font-size: 9pt }
  A         { text-decoration: none }
  A:link    { color: #0000A0; text-decoration: none }
  A:visited { color: #000080; text-decoration: none }
  A:active  { color: #FF0000; text-decoration: none }
  A:hover   { color: #FF0000; text-decoration: none }
  .tline    { font-size:0.1pt; background-image: url(images/tline.gif); }
  .nav         { text-decoration: none; color:#0000A0 }
  .nav:link    { text-decoration: none; color:#0000A0 }
  .nav:visited { text-decoration: none; color:#0000A0 }
  .nav:active  { text-decoration: none; color:#FF0000 }
  .nav:hover   { text-decoration: none; color:#FF0000 }
  .topic         { text-decoration: none }
  .topic:link    { text-decoration: none; color:#0000A0 }
  .topic:visited { text-decoration: none; color:#000080 }
  .topic:active  { text-decoration: none; color:#FF0000 }
  .topic:hover   { text-decoration: none; color:#FF0000 }
  .ilink         { text-decoration: none; color:#0000FF }
  .ilink:link    { text-decoration: none; color:#0000FF }
  .ilink:visited { text-decoration: none; color:#004080 }
  .ilink:active  { text-decoration: none; color:#FF0000 }
  .ilink:hover   { text-decoration: none; color:#FF0000 }
  .mod         { text-decoration: none; color:#000000 }
  .mod:link    { text-decoration: none; color:#000000 }
  .mod:visited { text-decoration: none; color:#000080 }
  .mod:active  { text-decoration: none; color:#FF0000 }
  .mod:hover   { text-decoration: none; color:#FF0000 }
  .thd1        { text-decoration: none; color:#808080 }
  .thd         { text-decoration: none; color:#808080 }
  .thd:link    { text-decoration: none; color:#808080 }
  .thd:visited { text-decoration: none; color:#808080 }
  .thd:active  { text-decoration: none; color:#FF0000 }
  .thd:hover   { text-decoration: none; color:#FF0000 }
  .curpage     { text-decoration: none; color:#FFFFFF; font-family: Tahoma; font-size: 9px }
  .page         { text-decoration: none; color:#003063; font-family: Tahoma; font-size: 9px }
  .page:link    { text-decoration: none; color:#003063; font-family: Tahoma; font-size: 9px }
  .page:visited { text-decoration: none; color:#003063; font-family: Tahoma; font-size: 9px }
  .page:active  { text-decoration: none; color:#FF0000; font-family: Tahoma; font-size: 9px }
  .page:hover   { text-decoration: none; color:#FF0000; font-family: Tahoma; font-size: 9px }
  .subject  { font-family: Tahoma,Georgia; font-size: 12px }
  .text     { font-family: Tahoma,Georgia; color: #000000; font-size: 12px }
  .codeStyle { padding-right: 0.5em; margin-top: 1em; padding-left: 0.5em;  font-size: 9pt; margin-bottom: 1em; padding-bottom: 0.5em; margin-left: 0pt; padding-top: 0.5em; font-family: Courier New; background-color: #000000; color:#ffffff }
  .smalltext   { font-family: Tahoma,Georgia; color: #000000; font-size:11px }
  .verysmalltext  { font-family: Tahoma,Georgia; color: #000000; font-size:4px }
  .member   { font-family:Tahoma; color:#003063; font-size:9px }
  .btnStyle  { background-color: #5D7790; border-width:2; 
             border-color: #E9E9E9; color: #FFFFFF; cursor: hand; 
             font-family: Tahoma,Georgia; font-size: 12px }
  .selStyle  { background-color: #FFFFFF; border-bottom: black 1px solid; 
             border-left: black 1px solid; border-right: black 1px solid; 
             border-top: black 1px solid; color: #000000; cursor: hand; 
             font-family: Tahoma,Georgia; font-size: 12px }
  .inpStyle  { background-color: #FFFFFF; border-bottom: black 1px solid; 
             border-left: black 1px solid; border-right: black 1px solid; 
             border-top: black 1px solid; color: #000000; 
             font-family: Tahoma,Georgia; font-size: 12px }
  .tlist1    { background-color: #f7f7f7}
  .tlist2    { background-color: #cccccc}
  .tunameb2  { color:#blue;filter:glow(color=, strength=#1); }
  .tunameb1  { color:#blue;filter:glow(color=cyan, strength=#1); }
  .tabcolor  { background-color: #000000;}
  .tabhead   { background-color: #5d7790;color:#ffffff;font-weight:normal;}
  .tabline1   { background-color: #f7f7f7;}
  .tabline2   { background-color: #e3e3e3;}
  .tophead   { background-color: #5d7790;color:#ffffff;font-weight:bolder;}
  .topline1   { background-color: #f7f7f7;}
  .topline2   { background-color: #e3e3e3;}
  .posttopic  { color:#000000;font-weight:bold;}
  .mpage1     { background-color: #5D7790;color:#ffffff;font-weight:bolder; }
  .mpage2     { background-color: #E4E4E4;color:#003063;font-weight:bolder; }
  .tabody     { background-color: #E4E4E4;color:#000000;font-weight:normal; }
  .fnotice    { color:red;font-weight:bold; }
  .fhead      { color:white;font-weight:bold;font-size: 18pt }
  .ppost      {line-height:1pt;text-align: right; text-indent: 10pt}
  .indexfont  { color:blue;font-weight:bold; }
  .clubfont   { color:red;font-weight:bold; } 
  .formname   { color:blue;font-weight:bold; } 
  .formnote   { color:#6699cc;font-weight:bold; } 
  .fadmin     { color:#003063;font-weight:bold; } 
  .flock     { color:#e7e7e7;font-weight:normal; } 
  .fstatus   {color:#336699; font-weight:bold;}
  .fill_line {  background-attachment: fixed; background-image: url(images/line_fill.gif); background-repeat: repeat-x}
  .pos1       {margin-left:50pt;margin-top:40pt;text-align:center;font-weight:demi-light;letter-spacing:.25em;}
  .pos2      {margin-top:-60pt;margin-right:0.5pt;text-align:center;font-weight:demi-light;letter-spacing:.30em;}
  .pos3       {margin-top:1pt;font-weight:demi-light;letter-spacing:.25em;}
  

#14



检查不能完全显示内容所在表格的相邻的列,看看是否设置了高度大小,如果设置了高度大小,将会把整个表格高度限制在设置的高度。

#1


将这个页面拷贝出来,内容完全都有?

有这样子的事情?给个连接看看。

#2


内网的连接,现在无法看到

#3


检查数据,看看里面是不是有引起不能显示的特殊字符,比如半角引号尖括号等。

#4


我把该网页内容另存为一个页面,则dw下面看没有发现不匹配的标记

#5


换个浏览器试试看看, ie有的时候会出这种问题的, 用firefox看,估计就全了. 或者在别人及其上试试看.

#6


你是不是用了frame/iframe把滚动条屏蔽掉了,或者用了层。

#7


怀疑是不是有些HTML标记不正确,比如:<title>标题 /title>之类的.

#8


可能是浏览器里面一些js的菜单效果兼容的不好,
不过我只遇到过firefox看不到,但ie能看到的,呵呵

#9


是不是跟你的Server的Charset有关系?比如支持UTF8或者GB2312之类的。转一下浏览器的编码,看一下效果。

#10


谢谢楼上各位好的建议,我可能说的不够
清楚,
情况是这样的:如果查询后返回的内容较少,则可以完全显示,
如果查询后返回的内容比较低,则页面就显示不全!
而将该页的内容全部拷贝下来,放到记事本中,内容是全的!
我实在不能理解,请各位给点灵感?

#11




应该是如果查询后返回的内容比较多

#12


css定义是不是限制了不能撑破表格
比如有这样的语句
table { 
table-layout: fixed;
word-wrap:break-word;
}
div { 
word-wrap:break-word;
}
如果是这样 将table的
width=100% height=100%

#13


我现在估计有可能时table的问题,但是目前还没有发现,我定义的css如下,请帮忙看一下,万分感谢
  BODY      { font-family: Tahoma,Georgia; color: #000000; font-size: 9pt;margin-top: 5px;margin-left: 20px;margin-right: 20px;margin-bottom: 5px; }
  P         { font-family: Tahoma,Georgia; color: #000000; font-size: 9pt }
  TD        { font-family: Tahoma,Georgia; color: #000000; font-size: 9pt }
  TEXTAREA  { font-family: Tahoma,Georgia; font-size: 9pt }
  A         { text-decoration: none }
  A:link    { color: #0000A0; text-decoration: none }
  A:visited { color: #000080; text-decoration: none }
  A:active  { color: #FF0000; text-decoration: none }
  A:hover   { color: #FF0000; text-decoration: none }
  .tline    { font-size:0.1pt; background-image: url(images/tline.gif); }
  .nav         { text-decoration: none; color:#0000A0 }
  .nav:link    { text-decoration: none; color:#0000A0 }
  .nav:visited { text-decoration: none; color:#0000A0 }
  .nav:active  { text-decoration: none; color:#FF0000 }
  .nav:hover   { text-decoration: none; color:#FF0000 }
  .topic         { text-decoration: none }
  .topic:link    { text-decoration: none; color:#0000A0 }
  .topic:visited { text-decoration: none; color:#000080 }
  .topic:active  { text-decoration: none; color:#FF0000 }
  .topic:hover   { text-decoration: none; color:#FF0000 }
  .ilink         { text-decoration: none; color:#0000FF }
  .ilink:link    { text-decoration: none; color:#0000FF }
  .ilink:visited { text-decoration: none; color:#004080 }
  .ilink:active  { text-decoration: none; color:#FF0000 }
  .ilink:hover   { text-decoration: none; color:#FF0000 }
  .mod         { text-decoration: none; color:#000000 }
  .mod:link    { text-decoration: none; color:#000000 }
  .mod:visited { text-decoration: none; color:#000080 }
  .mod:active  { text-decoration: none; color:#FF0000 }
  .mod:hover   { text-decoration: none; color:#FF0000 }
  .thd1        { text-decoration: none; color:#808080 }
  .thd         { text-decoration: none; color:#808080 }
  .thd:link    { text-decoration: none; color:#808080 }
  .thd:visited { text-decoration: none; color:#808080 }
  .thd:active  { text-decoration: none; color:#FF0000 }
  .thd:hover   { text-decoration: none; color:#FF0000 }
  .curpage     { text-decoration: none; color:#FFFFFF; font-family: Tahoma; font-size: 9px }
  .page         { text-decoration: none; color:#003063; font-family: Tahoma; font-size: 9px }
  .page:link    { text-decoration: none; color:#003063; font-family: Tahoma; font-size: 9px }
  .page:visited { text-decoration: none; color:#003063; font-family: Tahoma; font-size: 9px }
  .page:active  { text-decoration: none; color:#FF0000; font-family: Tahoma; font-size: 9px }
  .page:hover   { text-decoration: none; color:#FF0000; font-family: Tahoma; font-size: 9px }
  .subject  { font-family: Tahoma,Georgia; font-size: 12px }
  .text     { font-family: Tahoma,Georgia; color: #000000; font-size: 12px }
  .codeStyle { padding-right: 0.5em; margin-top: 1em; padding-left: 0.5em;  font-size: 9pt; margin-bottom: 1em; padding-bottom: 0.5em; margin-left: 0pt; padding-top: 0.5em; font-family: Courier New; background-color: #000000; color:#ffffff }
  .smalltext   { font-family: Tahoma,Georgia; color: #000000; font-size:11px }
  .verysmalltext  { font-family: Tahoma,Georgia; color: #000000; font-size:4px }
  .member   { font-family:Tahoma; color:#003063; font-size:9px }
  .btnStyle  { background-color: #5D7790; border-width:2; 
             border-color: #E9E9E9; color: #FFFFFF; cursor: hand; 
             font-family: Tahoma,Georgia; font-size: 12px }
  .selStyle  { background-color: #FFFFFF; border-bottom: black 1px solid; 
             border-left: black 1px solid; border-right: black 1px solid; 
             border-top: black 1px solid; color: #000000; cursor: hand; 
             font-family: Tahoma,Georgia; font-size: 12px }
  .inpStyle  { background-color: #FFFFFF; border-bottom: black 1px solid; 
             border-left: black 1px solid; border-right: black 1px solid; 
             border-top: black 1px solid; color: #000000; 
             font-family: Tahoma,Georgia; font-size: 12px }
  .tlist1    { background-color: #f7f7f7}
  .tlist2    { background-color: #cccccc}
  .tunameb2  { color:#blue;filter:glow(color=, strength=#1); }
  .tunameb1  { color:#blue;filter:glow(color=cyan, strength=#1); }
  .tabcolor  { background-color: #000000;}
  .tabhead   { background-color: #5d7790;color:#ffffff;font-weight:normal;}
  .tabline1   { background-color: #f7f7f7;}
  .tabline2   { background-color: #e3e3e3;}
  .tophead   { background-color: #5d7790;color:#ffffff;font-weight:bolder;}
  .topline1   { background-color: #f7f7f7;}
  .topline2   { background-color: #e3e3e3;}
  .posttopic  { color:#000000;font-weight:bold;}
  .mpage1     { background-color: #5D7790;color:#ffffff;font-weight:bolder; }
  .mpage2     { background-color: #E4E4E4;color:#003063;font-weight:bolder; }
  .tabody     { background-color: #E4E4E4;color:#000000;font-weight:normal; }
  .fnotice    { color:red;font-weight:bold; }
  .fhead      { color:white;font-weight:bold;font-size: 18pt }
  .ppost      {line-height:1pt;text-align: right; text-indent: 10pt}
  .indexfont  { color:blue;font-weight:bold; }
  .clubfont   { color:red;font-weight:bold; } 
  .formname   { color:blue;font-weight:bold; } 
  .formnote   { color:#6699cc;font-weight:bold; } 
  .fadmin     { color:#003063;font-weight:bold; } 
  .flock     { color:#e7e7e7;font-weight:normal; } 
  .fstatus   {color:#336699; font-weight:bold;}
  .fill_line {  background-attachment: fixed; background-image: url(images/line_fill.gif); background-repeat: repeat-x}
  .pos1       {margin-left:50pt;margin-top:40pt;text-align:center;font-weight:demi-light;letter-spacing:.25em;}
  .pos2      {margin-top:-60pt;margin-right:0.5pt;text-align:center;font-weight:demi-light;letter-spacing:.30em;}
  .pos3       {margin-top:1pt;font-weight:demi-light;letter-spacing:.25em;}
  

#14



检查不能完全显示内容所在表格的相邻的列,看看是否设置了高度大小,如果设置了高度大小,将会把整个表格高度限制在设置的高度。