您好,登錄后才能下訂單哦!
小編給大家分享一下extjs與php參數交互的示例分析,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
代碼如下:
<html>
<head>
<title>HelloWorld</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="../../ext-4.0.7-gpl/resources/css/ext-all.css" >
<script type="text/javascript" src="../../ext-4.0.7-gpl/bootstrap.js"></script>
<script type="text/javascript" src="../../ext-4.0.7-gpl/locale/ext-lang-zh_CN.js"></script>
<script type="text/javascript">
Ext.onReady(function(){
var requestConfig = {
url:'loginServer.php', //請求的服務器地址
params:{userName:'lowkey', password:'zq19890319'}, //請求參數
method : "post",
callback:function(options, success, response) {
var msg=["請求是否成功:", success, "\n",
"服務器返回值:", response.responseText];
Ext.Msg.alert("提示", response.responseText);
}
}
Ext.Ajax.request(requestConfig);
});
</script>
</head>
<body>
</body>
</html>
復制代碼 代碼如下:
<?php
$userName = $_POST["userName"];
$password = $_POST["password"];
$msg = "";
if($userName=="lowkey" && $password=="zq19890319") {
$msg = "登陸成功";
} else {
$msg = "登陸失敗";
}
echo($msg);
?>
看完了這篇文章,相信你對“extjs與php參數交互的示例分析”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。