javascript
  • html
  • css
  • 2011-11-12 52 views 0 likes 
    0

    我有觸發動作時彈出的這個div。當我向下滾動頁面時,它仍然位於頁面頂部。我想設置滾動高度,以便它相對於頁面滾動移動。簡單地表明立場:相對不起作用。我怎樣才能使用JavaScript得到這個?幫幫我。使用javascript和css設置DIV的滾動高度

    <form name="" action="" method="POST"> 
        <div id='divSearchAndReplace'> 
        <table id='divSearchAndReplace_Header' width='100%'>    
        <tr> 
         <td>       
          <table> 
          <tr> 
           <td align='left'></td> 
          </tr> 
          </table>      
         </td>     
        </tr> 
        </table> 
    
        <table width='100%' border='0' cellspacing="4" cellpadding="2">    
        <tr><td colspan='2' nowrap height='10px'></td></tr> 
        <tr valign="top"> 
    
        </tr> 
        <tr><td colspan='2' align='right' style='padding-right:12px;'><input class='form_button' type='submit' name='btnSubmit' value='Replace' onclick='return checkSearchAndReplace();'/></td></tr>  
        </table> 
    </div> 
    </form> 
    

    這是CSS

    #divSearchAndReplace { width:450px; height:240px; border:1px solid #336699; background-color:#ffffff; position:absolute; left:200px; top:75px; display:none; } 
    #divSearchAndReplace table { width:450px; border:0px; align:center; } 
    

    回答

    3

    你也許希望在CSS position: fixed

    +1

    這樣做。有趣的是,我正在考慮複雜的解決方案。謝啦。 +1 – karto

    相關問題