zoukankan      html  css  js  c++  java
  • FAQ about AJAXpart I

    Q:
    does AJAX use still use a request/response model?
    A:
    Actually, your pages are still making request and getting responses. you 'are using a different approach in how you make those requests and handle the response--now you use javascirpt to make the actual request, instead of just submitting  a web form.

    Q:
    why not just submit the form normally?what does using Ajax really do for us?
    A:
    The javascript code in an Ajax application sends your requess to be processed by the serer, but doesnot wait for an anser. even better, javascript can also work with the server's response, instead of reloading the entire page when the server is finished with your request.

    Q:
    So does the page ever get back a resposne?
    A:
    That's where the asynchronous part of Ajax comes in. when the serve sends back a response, javascript can update a page with new values, change an image, or even take the user to a whole new web page, And the user never has to wait around while all this is going in.

    Q:
    so should we use Ajax for all of my requests?
    A:
        There are still of times when you'll want to use traditional web programming. for instance, when a form is totally filled out, you can let the user click a submit button, and then send the entire form to your web server, without using Ajax.
        But ,you 'll use Ajax for most of your dynamic page processing, like changing images,updating fields,and responding to users, if you only need to update part of a page, then Ajax is the way to go.

    Q:
    what's the relation XML with Ajax?
    A:
    sometimes, your javasript will use XML to talk back and forth with server, But you don't always need to use XML for your reqeusts.

    Q:
        does use have to use a certain browser to use Ajax apps?
    A:
        No, as long as your uses have javascript enabled in their web browers, this code should work without any problems. so your ajax apps wil run just fine on FireFox,Mozilla, IE,Netscape, and Opera.
        
    Q:
        what if someone has javascript disabeld in their browser?
    A:
        Unfortunately, Ajax apps require javascript to run. so users who have javacript disabled are not going to be able to use your ajax Apps.

    Q:
        we got two ways to send our client data to server, POST and GET. maybe POST is better than  GET?
    A:
        Post is usually used when you are sending a serer lots of data.  but Get is not like this.    

    Q:
        what's DOM, and how the Dom with with a HTML Page?
    A:
        Dom is the abbriviated form for Document Object Model. web Server use the DOM to represent an HTML web page. our javascript can use the DOM to update values in  a page. DOM can manipulate all elements in the HMTL page. for examples: document.getElementbyId("username") such like that..:)





  • 相关阅读:
    js中图片base64格式转文件对象
    vue中添加百度统计代码
    一个基于vueCli3的移动端多页面脚手架
    一个基于WabPack4的 Vue 多页面原生写法脚手架
    GPU加速有坑?
    mac效率工具
    git操作详解
    高性能移动端开发
    浅析vue数据绑定
    移动端适配
  • 原文地址:https://www.cnblogs.com/Winston/p/1150605.html
Copyright © 2011-2022 走看看