AJAX によって動的に読み込まれる次の HTML があります。
<h5>Contact Information</h5>
<hr />
<div id="formError" style="display:none;margin-top:10px;" class="alert alert-error"></div>
<div class="form">
<form class="form-horizontal" id="frmContactInformation" target="<?php echo Uri::create('ucp/updateContactInformation'); ?>" method="post">
<input type="text" name="ns" id="ns" style="display:none;">
<input type="hidden" name="<?php echo \Config::get('security.csrf_token_key');?>" id="<?php echo \Config::get('security.csrf_token_key');?>" value="<?php echo \Security::fetch_token();?>" />
<small><strong>NOTICE</strong> Any address entered here will not be displayed or made publicly available. It will be used for the sole purpose of notifying you of new listings in your area per your notification settings. Should you choose not to enter your address, geolocation based notifications will be unavailable to you. More information is available in our <a href="<?php echo Uri::create('docs/privacy'); ?>">privacy policy</a>.</small><br/><br/>
<div class="control-group" id="PF-group-addr1">
<label class="control-label" for="PF-addr1"><strong>Address 1</strong></label>
<div class="controls">
<input type="text" class="input-large" id="PF-addr1" placeholder="Address 1">
</div>
</div>
<div class="control-group" id="PF-group-addr2">
<label class="control-label" for="PF-addr2"><strong>Address 2</strong></label>
<div class="controls">
<input type="text" class="input-large" id="PF-addr2" placeholder="Address 2">
</div>
</div>
<div class="controls controls-row">
<input class="span4" type="text" placeholder=".span4">
<input class="span1" type="text" placeholder=".span1">
</div>
<div class="form-actions">
<span id="loader" style="display:none;"><?php echo Asset::img('loader.gif'); ?> Processing ... please wait</span>
<button type="submit" class="btn btn-primary" id="frmSubmit"><strong>Save Changes</strong></button>
</div>
</form>
</div>
フィールド Address 2 の下に、3 つのテキスト フィールド (city、state、zip) を含む別の行が必要です。これらの各フィールドにもラベルが必要です。ラベルとフィールドを合わせた幅は、フォーム コンテナーの合計幅と同じにする必要があります (span8 だと思います)。少し関連するメモとして、input-small などのさまざまなサイズを設定しているにもかかわらず、私が持っている他のフィールド (住所 1 や住所 2 など) は、行の残りのスペースを水平方向に占有するように自動的にサイズ変更されます。これらの問題のいずれかに関するヘルプをいただければ幸いです。