下面的代码是从我的数据库创建的,因此它的多个classes
名称相同但内容不同。我需要做的是,当单击带有按钮的按钮时,class = 'config'
我需要使用class = 获取div的值['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>