<td><iframe id="iframe1" src="Showneiron.aspx" style="font-size:12px; color:Red; text-align:left; width: 775px; height: 207px;" frameborder="no" marginheight="0" marginwidth="0" scrolling="atuo"></iframe></td>
高手提供一下帮助啊,做了好久了....郁闷了

解决方案 »

  1.   

    <body style="overflow-x:hidden">试试
      

  2.   

    <iframe id="iframe1" src="Showneiron.aspx" style="font-size:12px; color:Red; text-align:left; width: 775px; height: 207px;" frameborder="no" marginheight="0" marginwidth="0" scrolling="yes"> 
      

  3.   

    style="OVERFLOW-Y: auto; OVERFLOW-X: hidden;" 替换掉你的scrolling="atuo"     atuo表示默认横竖都有滚动条
      

  4.   

    <html style="overflow: auto; overflow-x:hidden">
    或者<html style="overflow: scroll; overflow-x:hidden">
    两个都可以实现
      

  5.   

    不好意思,整理一下
    <iframe id="iframe1" src="Showneiron.aspx" style="font-size:12px; color:Red; text-align:left; width: 775px; height: 207px;" frameborder="no" marginheight="0" marginwidth="0" scrolling="yes"> </iframe>
    将Showneiron.aspx页面中加上<body style="overflow-x:hidden">
      

  6.   

    OVERFLOW-Y: auto; OVERFLOW-X: hidden;"   
    这个不是有效属性啊
      

  7.   

    <style type="text/css">
        body 
        { 
            overflow-y: scroll; 
            overflow-x: hidden; 
        }</style><td> <iframe id="iframe1" src="Showneiron.aspx" style="font-size:12px; color:Red; text-align:left; width: 775px; height: 207px;" frameborder="no" marginheight="0" marginwidth="0" scrolling="atuo"> </iframe> </td>
      

  8.   

    Showneiron.aspx
    <body style="text-align: left; overflow-x:hidden;overflow-y:auto;">(不是有效属性)                <td><iframe id="iframe1" src="Showneiron.aspx" style="font-size:12px; color:Red; text-align:left; width: 775px; height: 207px;overflow: scroll;overflow-y: auto; overflow-x: hidden;" frameborder="no" marginheight="0" marginwidth="0"></iframe></td>
    (不是有效属性)
      

  9.   

    哦,搞错了,将下面一段放到Showneiron.aspx头部
    <style type="text/css">
        body
        {
            overflow-y: scroll;
            overflow-x: hidden;
        }</style> 
      

  10.   

    <iframe id="iframe1" src="Showneiron.aspx" style="font-size:12px; color:Red; text-align:left; width: 775px; height: 207px;" frameborder="no" marginheight="0" marginwidth="0" scrolling="yes"> </iframe> 
    将Showneiron.aspx页面中加上 <body style="overflow-x:hidden;overflow-y:auto">
    可以的啊
      

  11.   

    我已经加了.我真的已经加了
       他报不是CSS有效属性
      

  12.   

        <title>文件夹内容显示</title>
        <script language="javascript" type="text/javascript">
        function gourl(address)
        {
    //    onmouseover="javascript:gourl(this.id)"
            alert(''+address);
        }
        function gourl1(address)
        {
        window.open("Default.aspx","","height=400,width=400,top='400',left='400'");
    //        window.open("Default.aspx","",'height=400, width=400, top=400, left=400, toolbar=no, menubar=no,scrollbars=no, resizable=no,location=no, status=no');
        }
        </script>
    </head>
    <body style="text-align: left;overflow-x:hidden;overflow-y:auto">
      

  13.   

    不是有效的CSS有效属性名.真的要吐血了.
       你们行我不行??人品,长像?我都还行啊
      

  14.   

    <body style="overflow-x:hidden">试试 正解