2011-12-18 68 views
0

我想將表單輸入到我的html中,當我查看頁面時,我沒有看到整個表單,只是表單的開始。代碼位於我的html和表單腳本的下方。如何使用css將表單嵌入到html文檔中

<section id="content"> 
     <div class="container_12"> 
      <article class="a3"> 
       <h4>Careers</h4> 
        <p class="p2"> 

          <a name="form1160016477" id="formAnchor1160016477"></a> 
<script type="text/javascript" src="http://fs23.formsite.com/include/form/embedManager.js?1160016477"></script> 
<script type="text/javascript"> 
EmbedManager.embed({ 
    key: "http://fs23.formsite.com/res/showFormEmbed?EParam=m%2FOmK8apOTB8lIDHQTyQ62rYe2Y6sJfY&1160016477", 
    width: "100%" 

}); 
</script> 
<!-- Notes: 
To control the width of the form, change width: "100%" to any number or percentage. 
To pre-populate fields in the form or to use a custom resize callback, see http://fs23.formsite.com/documentation/embedded-form.html 
--> 

這裏是網站:http://www.creativemindspcs.org/englishapplication.html

回答

0

的問題是iframe的高度,你需要添加height:800px;到html中的iframe樣式。目前它被設置爲默認值,因此iframe窗口不會顯示所有內容。

由於iframe要使用JavaScript動態生成的,應該可以在一個高度參數來傳遞像你這樣的寬度,如果是這樣的話,那麼這將解決這個問題:

EmbedManager.embed({ 
    key: "http://fs23.formsite.com/res/showFormEmbed? EParam=m%2FOmK8apOTB8lIDHQTyQ62rYe2Y6sJfY&1160016477", 
    width: "100%", 
    height: "800px" 
}); 

如果TE 800像素沒有按不修復它,你可以嘗試100%的身高,但一般來說高度和百分比不會很好地混合。

+0

所以你說要clear="all" /> 2011-12-18 06:56:13

+0

謝謝。我已經嘗試過兩種方法,但他們仍然沒有工作。 http://www.creativemindspcs.org/englishapplication.html – 2011-12-18 07:22:39

相關問題