jquery 中“增加”功能如何添加复选框

jquery 中“增加”功能如何添加复选框,第1张

<script>

$(document).ready(function(){

$("#add").click(function(){

$("#addto").append(" <input type='checkbox' name='animal'>")

})

})

</script>

</head>

<body>

<div id="addto">

<input type="checkbox" name="animal" id="cat">大象

<input type="checkbox" name="animal" id="dog">老虎

<input type="checkbox" name="animal" id="pig">狮子

</div>

<br/>

<input type="button" name="add" id="add" value="添加">

</body>

jqgrid初始化加上这个方法

beforeSelectRow: function (rowid, e) {

var $myGrid = $(this),

i = $.jgrid.getCellIndex($(e.target).closest('td')[0]),

cm = $myGrid.jqGrid('getGridParam', 'colModel')

return (cm[i].name === 'cb')

},

Action里面:

private PromotionManageTo promotionManageTo

private List<PromotionManageTo>productClass

get…

set…

SqlMaps里面:

<select resultClass="promotionManage.PromotionManageTo">

……

</select>

JSP里面:

<s:iterator value="productClass" status="productClassLength">

<td>

<input type="checkbox" name="promotionManageTo.productId" value="<fs:property value="productId"/>" <c:if test="${fn:containsIgnoreCase(promotionManageTo.productId, productId)}">checked="checked"</c:if>/>

</td>

</s:iterator>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11771586.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-18
下一篇 2023-05-18

发表评论

登录后才能评论

评论列表(0条)

保存