我想知道我们是否有办法将样式保存在带有Ajax->链接的更新输入中?
我有这段代码。
<?= $this->Ajax->link('Update fields', array('controller' => 'residences', 'action' => 'edit', $residence['Residence']['id']),
array('update' => 'finance_dep_nourriture_commentaire')) ?>
和我的div
<?= $this->Ajax->div('finance_dep_nourriture_commentaire') ?>
<?= $this->Form->input('Residence.finance_dep_nourriture_commentaire', array('size' => '10', 'alt' => 'cash')) ?>$/l'unité
<?= $this->Ajax->divEnd('finance_dep_nourriture_commentaire') ?>
我的字段在更新之前有此代码
<div id="finance_dep_nourriture_commentaire">
<input id="ResidenceFinanceDepNourritureCommentaire" type="text" value="1600.00" alt="cash" size="10" name="data[Residence][finance_dep_nourriture_commentaire]" style="text-align: right;">mask=Object { attr="alt", mask="99.999999999999", type="reverse", more...}events=Object { keydown=[1], keypress=[1], keyup=[1], more...}handle=function()
$ / L'团结
更新后
<div id="finance_dep_nourriture_commentaire">
<input id="ResidenceFinanceDepNourritureCommentaire" type="text" value="2000.00" maxlength="13" alt="cash" size="10" name="data[Residence][finance_dep_nourriture_commentaire]">
$ / L'团结
我如何保持面具,风格等?
感谢。