Jquery常见问题大纲

1.搜索条件清空

$(':input','#submitForm') 
.not(':button, :submit, :reset, :hidden') 
.val('') 
.removeAttr('checked') 
.removeAttr('selected')

2.JQuery之Ajax使用

1).async:要求为Boolean类型的参数,默认设置为true,所有请求均为异步请求.如果需要发送同步请求,请将此选项设置为false。注意,同步请求将锁住浏览器,用户其他操作必须等待请求完成才可以执行.
2).cache:要求为Boolean类型的参数,默认为true(当dataType为script时默认为false),设置为false将不会从浏览器缓存中加载请求信息.

$(function(){
    $('#send').click(function(){
         $.ajax({
             type: "POST",
             url: "test.json",
             data: {username:$("#username").val(), content:$("#content").val()},
             dataType: "json",
             success: function(data){
				 $('#resText').empty();   //清空resText里面的所有内容
				 var html = ''; 
				 $.each(data, function(commentIndex, comment){
					   html += '
' + comment['username'] + ':

'; }); $('#resText').html(html); }, error: function(data){ alert("系统请求异常"); } }); }); });



你可能感兴趣的:(前端设计,JQuery,前端开发)