如何使用jquery和ajax将复选框检查的数据发送到struts动作类

时间:2016-08-24 07:16:10

标签: jquery ajax struts2

下面是我的jquery这里如何使用jquery和ajax在struts动作类中获取复选框检查数据请告诉我清楚

<GridPane GridPane.columnIndex="1" AnchorPane.rightAnchor="0" AnchorPane.leftAnchor="0">

Full coding with html table

1 个答案:

答案 0 :(得分:0)

在动作类

中创建变量和getter以及setter
private Boolean example;
public Boolean getExample() { return example; }
public void setExample(Boolean example) { this.example = example; }

为您的复选框添加值属性

<input type="checkbox" class="case" value="true" name="example"/>

然后使用jquery的ajax()函数通过POST或GET

发送它
$.ajax({
    url: yoururl,
    method:'POST',
    data: $('.case').serialize()
});

提交请求时,示例变量将为true或false,具体取决于是否选中了复选框。