判断复选框是否被选中的两种方法
判断复选框是否被选中的两种方法
发布时间:2016-12-30 来源:查字典编辑
摘要:复制代码代码如下:MyJSP'checkbox.jsp'startingpage$(function(){//$("#box").click...

复制代码 代码如下:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>

<%

String path = request.getContextPath();

String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";

%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

<head>

<base href="<%=basePath%>">

<title>My JSP 'checkbox.jsp' starting page</title>

<meta http-equiv="pragma" content="no-cache">

<meta http-equiv="cache-control" content="no-cache">

<meta http-equiv="expires" content="0">

<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">

<meta http-equiv="description" content="This is my page">

<script type="text/javascript" src="<%=request.getContextPath() %>/jquery/jquery-1.7.min.js"></script>

<>

<script type="text/javascript">

$(function(){

//$("#box").click(function(){

// if ($("#box").attr("checked")=="checked") {

// alert("ss");

// }

//})

if ($("#box").is(":checked")) {

alert("df");

}

})

</script>

</head>

<body>

<input type="checkbox" id="box" checked="checked">

</body>

</html>

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Javascript教程学习
热门Javascript教程学习
编程开发子分类