jQuery

作者: 一条自由自在的鱼 | 来源:发表于2016-06-07 16:44 被阅读20次

    $(selector).action()
    美元符号定义jQuery
    选择器查找HTML元素
    action()执行对元素的操作
    example:

    $(this).hide()
    $("p").hide()
    

    jQuery ajax post()方法:
    jQuery.post(*url*,*data*,*success(data, textStatus, jqXHR)*,*dataType*)

    Paste_Image.png

    该函数是简写的 Ajax 函数,等价于:

    $.ajax({
     type: 'POST',
     url: *url*,
     data: *data*,
     success: *success*,
     dataType: *dataType*
    });
    

    相关文章

      网友评论

          本文标题:jQuery

          本文链接:https://www.haomeiwen.com/subject/jbwddttx.html