首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

jquery自定义属性,解决List中按钮传值有关问题

2012-11-13 
jquery自定义属性,解决List中按钮传值问题用JQuery对前台代码进行规范,遇到一些问题。对集合数据进行遍历时

jquery自定义属性,解决List中按钮传值问题
     用JQuery对前台代码进行规范,遇到一些问题。对集合数据进行遍历时,操作单条数据的增、删、改、查,需要传递一些参数进行后台的处理。
      本人在项目中用标签的自定义属性传值,然后jquery使用attr便可访问到,这样可以减少javascript脚本中代码和数据的耦合


下面是例子代码,仅供参考:
<script type="text/javascript">
$(document).ready(function(){
//ajax删除
$(".btn_delete").click(function(){
ret = window.confirm('${texts['dtaq.common.delete.msg']}');
if(ret){
$.ajax({
   type: "POST",
url: 'sysCodeRuleitemAction.do?method=delete'
+'&id='+$(this).attr("paramId")
+'&ruleid='+$(this).attr("paramRuleid"),
   success: function(msg){
  $('#childbody').html(msg);
   }
});
}
});
//
});
</script>
<fieldset>
<legend>
[***********]
</legend>
<table >
<thead>
<tr >
<th width="5%" >序号</th>
<th width="25%">*****</th>
<th width="10%" >*****</th>
<th width="10%" >*****</th>
<th width="25%" >*****</th>
</tr>
</thead>
<c:forEach items="${sysCodeRuleitems}" varStatus="index"
var="sysCodeRuleitem">
<tr
        paramId="${sysCodeRuleitem.id}"
        paramRuleid="${param.ruleid}"/>
<input type="button"
value="${texts['button.delete']}"
paramId="${sysCodeRuleitem.id}"
paramRuleid="${param.ruleid}"/>
</div>
</td>
</tr>
</c:forEach>
</table>
</fieldset>   

热点排行