我在CodeIgniter中使用form_helper
这个下拉菜单:
<?php if($materialType): ?>
<?php
$material_options = array();
foreach($materialType as $rows){
$material_options[$rows->id] = $rows->category;
}
echo form_dropdown('materialType',$material_options,'','id="materialType"');
?>
<?php endif; ?>
<div id="materials"></div>
上面的代码位于<form>
标记内,我有这个脚本:
<script type="text/javascript">
var base_url = "<?php echo base_url(); ?>";
</script>
<script>
$(document).ready(function(){
$(document).on('change','#materialType',function(){
loadthis();
});
function loadthis(){
var ID = $('#materialType').val();
var dataString = 'id='+ ID ;
$.ajax({
type: "POST",
url: base_url + "index.php/admin/get_material",
data: dataString,
cache: false,
success: function(data)
{
$('#materials').html(data);
}
});
}
loadthis();
});
</script>
以下是正在加载的代码:
<div id="materials">
<?php if($materials): ?>
<table>
<th>Name</th>
<th>Description</th>
<?php foreach($materials as $row): ?>
<tr>
<td><?php echo $row->mname; ?></td>
<td><?php echo $row->mdesc; ?></td>
<td>
<button class="try" value="<?php echo $row->id; ?>">Add</button>
</td>
</tr>
<?php endforeach; ?>
</table>
<?php else: ?>
<div class="alert alert-error" style="width:300px;">No Resource Available!</div>
<?php endif; ?>
$(document).on('click','.try',function(){
alert($(this).val());
return false;
});
我想要的是如果点击Add
button
,我可以获取ID
,mname
并将其存储到提交表单之前。
如何在jquery中使用.data()
来做到这一点?或者有关如何存储它的任何想法,直到提交表格。
答案 0 :(得分:1)
我没有彻底查看您的代码,但我注意到当您在循环中打印表行时,您将id="try"
分配给所有行。 html id
- 属性是一个唯一的标识符,因此警告该值的JS只会返回它将找到的第一个id的值(至少这是我的想法)。尝试使用class
的{{1}} instread,然后在js中使用id
。
this