2019-08-16 各種ajax使用

1.XMLHttpRequest使用

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <script>
        window.onload = function () {
            let oBtn = document.querySelector('input')
            oBtn.addEventListener('click', function () {
                let xhr = new XMLHttpRequest()
                xhr.open('post', '/login', true)
                xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");

                xhr.send(JSON.stringify({fda:'fdsa',bv:'fdagr'}));
            })

        }
    </script>
</head>

<body>
    <input type="button" value="登錄">
</body>

</html>
  1. XMLHttpRequest上傳文件
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <script>
    window.onload=function(){
        document.querySelector('input[type="button"]').onclick=function(){
            var fileObj = document.getElementById("file").files[0];
            var form = new FormData()
            form.append("mf", fileObj)
            form.append("user", document.querySelectorAll('input')[0].value)
            form.append("pass", document.querySelectorAll('input')[1].value)
            let xhr=new XMLHttpRequest()
            xhr.open('post','/upload',true)

            xhr.send(form)
            xhr.onload=function(){
                if (xhr.status === 200) {
                var obj = JSON.parse(xhr.responseText);
                if(obj.e =='suc'){
                    alert('上傳成功')
                }else{
                    alert(obj.msg)
                }
            } else {
                console.error('Something went terribly wrong...');
            }
        }
    }
}
    </script>
</head>
<body>
    <form>
        用戶:<input type="text" name="user"><br/>
        密碼:<input type="text" name="pass"><br/>
        文件:<input type="file" id="file" name="file"/><br/>
        <input type="button"  value="提交">
    </form>
</body>
</html>
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容