我正在使用 jquery 来做这个例子。我有我的复选框声明
<input type="checkbox" checked="checked" id="checkbox1" />
<script>
$('#checkbox1').change(function() {
if (!$(this).is(':checked')) {
<% call the jave method %>
}
else
{
<%call the java method%>
}
</script>
问题在于,当页面加载时,会评估两个动作。我正在考虑使用 ajax,但还没有找到复选框更改事件的示例。