html5如何獲取php資料

2020-07-16 10:06:44

HTML5獲取php資料的方法:

HTML程式碼

<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.0-rc1.js"></script>
</head>
<body>
<script type="text/javascript">
    $(document).ready(function(){
        $.ajax({
            url:"sms.php",
            type: "GET",
            dataType: "text",
            success: function(data){
                alert(data);//$a的值
            }
 
        })
    })
   
</script>
</body>
</html>

sms.php :

<?php
$a = 'aaaa';
echo $a;
?>
以上就是html5如何獲取php資料的詳細內容,更多請關注TW511.COM其它相關文章!