淡定从容,宁静致远
全部博文(329)
发布时间:2015-07-21 17:08:23
<p style="margin:10px auto;font-family:Verdana, 'Lucida Grande', Arial, Helvetica, sans-serif;font-size:12px;line-height:18px;white-space:normal;background-color:#FFFFFF;">下面是Jquery中AJAX参数详细列表:</p><table border="1" cellspacing="0" cellpadding="0" style="border:1px solid silver;word-br.........【阅读全文】
发布时间:2015-05-11 14:50:10
$.ajax({url:"${pageContext.request.contextPath}/UserServlet",//要请求的servletdata:{method:"queryUserExistAjax",userName:value},//传给服务器的参数type:"POST",dataType:"json",async:false,cache:false,success:function(result){if(!result){//如果后台返回false,用户名不存在$("#"+id+"Error").text(".........【阅读全文】
发布时间:2015-03-17 20:32:57
1.要确定div大小2.隐藏和显示<script type="text/javascript">$().ready(function(){$('#div_').hide();$( function() {/* $('#div_').hide();$('#img').hover( function() {$('#div_').show();}, function() {$('#div_').hide();}); */$('p').hover(function() {$('#div_').show();}, function() {$('#d.........【阅读全文】
发布时间:2015-03-17 20:22:49
$( function() {$('#div_').hide();$('#img').hover( function() {$('#div_').show();}, function() {$('#div_').hide();});$('#div_').hover( function() {$('#div_').show();}, function() {$('#div_').hide();});});......【阅读全文】