2つの要素をdivタグでカプセル化したい、このようにしたい
<div>
<span id="mailRecepientName2-label">
<label class="elementTitle required" for="mailRecepientName2">اسم المستفيد</label>
</span>
<span>
<input id="mailRecepientName2" type="text" value="" name="mailRecepientName2">
</span>
<span id="mailRecepientNote2-label">
<label class="required" for="mailRecepientNote2">البيـــــــان</label>
</span>
<span class="largeText">
<input id="mailRecepientNote2" type="text" value="" name="mailRecepientNote2">
</span>
<a class="ico_lable_remove" data-recepeintcount="2" name="deleteNewRecepient" href="javascript:void(0)"></a>
</div>
私はこのように作ります、
$mailRecepientName = new Zend_Form_Element_Text("mailRecepientName" . $id);
$mailRecepientName->setRequired(true)->setLabel('اسم المستفيد')->setDecorators(array(
'ViewHelper',
'Errors',
array(array('data' => 'HtmlTag'), array('tag' => 'span')),
array('Label', array('tag' => 'span'))
););
$mailRecepientNote = new Zend_Form_Element_Text("mailRecepientNote" . $id);
$mailRecepientNote->setRequired(true)->setLabel('البيـــــــان')->setDecorators(array(
'ViewHelper',
'Errors',
array(array('data' => 'HtmlTag'), array('tag' => 'span')),
array('Label', array('tag' => 'span'))
););
);
これらの要素は両方とも、同じフィールドセットのグループに属しています。どうすればそれらをdiv内にカプセル化できますか?