2014-01-07 105 views
0

我想要在同一頁面上使用表單中的值填充合同,我有基本的想法,但無法理解我的應用程序中缺少的內容。在附加文本字段中顯示錶單輸入

jQuery(function($) { 
var input_5 = $('#input_5'); 
var Child2Name = $('#Child2Name'); 
var previewinput_5 = $('.Previewinput_5'); 
var preview2ChildName = $('.PreviewChild2Name'); 

input_5.keyup(function(e) { 
    previewChild1Name.text(input_5.val()); }); 


Child2Name.keyup(function(e) { 
    preview2ChildName.text(Child2Name.val()); }); 
    }); 




<li class="form-line" id="id_5"> 
    <label class="form-label-left" id="label_5" for="input_5"> 
     Legal Business Name<span class="form-required">*</span> 
    </label> 
    <div id="cid_5" class="form-input"> 
     <input type="text" class=" form-textbox validate[required]" 
data-type="input- textbox" id="input_5" name="q5_legalBusiness" 
size="20" value="" /> 
    </div> 
    </li> 

<input type="text" name="child2name" id="Child2Name" /> 
<Label>Child2 Name</label> 


Whether it’s what <span class="input_5"></span> <br> 
Whether it’s what <span class="PreviewChild2Name"></span> <BR> 

第二部分工作正常,首先是明確其實際形式如何被顯示

http://jsfiddle.net/3dMqU/10/

+2

你能更清楚什麼是不工作? – elitechief21

+0

該文本只顯示class =「PreviewChild2Name」 –

+0

對我來說工作正常 – Ljubisa

回答

0

您沒有使用正確的名稱(變量名和類名的問題)在這些行:

var previewinput_5 = $('.Previewinput_5'); 
Whether it’s what <span class="cid_5"></span> 

我認爲previewinput_5應該previewChild1NamePreviewinput_5應該是cid_5。你的fiddle爲我工作,因爲你正確的命名,這就是爲什麼我感到困惑。

+0

小提琴只適用於第二個,而不是第一個,這是我的困惑,我通過在這裏錯誤地標記我的代碼添加到 –

+0

您的小提琴的作品就像它應該對我 – elitechief21

+0

更新小提琴到我正在使用的實際代碼 –

相關問題