首页 > 其他 > 详细

验证文本框是否为空弹出提示

时间:2014-04-08 22:49:47      阅读:510      评论:0      收藏:0      [点我收藏+]

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="WebForm1.aspx.vb" Inherits="WebApplication1.WebForm1" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<script src="jquery-2.1.0-beta3.js"></script>
<script>
$(function () {
$("#tbn").click(function () {
var txt = $("#txt");
if (txt.val().length==0) {
alert("ok");
} else {
alert("no");
}
});
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<input type="text" name="name" id="txt" />
<input type="button" name="btn" value="确定" id="tbn" />
</div>
</form>
</body>
</html>

验证文本框是否为空弹出提示,布布扣,bubuko.com

验证文本框是否为空弹出提示

原文:http://www.cnblogs.com/crazyair/p/3650510.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!