以下のコードは私のDBから作成されているため、同じclasses
名前で内容が異なる複数のコードがあります。私がする必要があるのは、ボタンがクリックされたときに、クラス =でdivclass = 'config'
の値を取得する必要があることです 。どうすればこれを進めることができますか?['value','type','info']
this
this
config
$(".config").click(function(){
var id = $(this).attr('id');
});
何かヒント??
HTML
<div class="mws-form-row bordered">
<label class="mws-form-label"><?php echo SaleAdmin_Engine::getConfigName($this->result[0]['config_name']) ; ?></label>
<div class="mws-form-item">
<b>Value</b> <input type="text" class="value required large" value="<?php echo $this->result[0]['config_value']; ?>">
<b>Type</b> <input type="text" class="type required large" value="<?php echo $this->result[0]['config_type']; ?>">
<b>Info</b> <textarea rows="" cols="" class="info required large"><?php echo $this->result[0]['config_info']; ?></textarea>
</div>
<button class="config btn btn-inverse btn-small" rel="<?php echo $this->result[0]['config_id']; ?>" type="button">Save</button>
</div>