Почему не работает функция alert()???
<!doctype html>
<html lang="ru">
<style>
</style>
<head>
<meta charset="UTF-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$("document").ready(function(){
$("#send").click(function(){
var send = $("form").serialize();
$.ajax({
url: "test.php",
type: "POST",
data: send,
success: function(data){
alert(data); // ?????
}
});
});
});
</script>
<title>Document</title>
</head>
<body>
<form action="" method="POST">
<input type="text" name="phone" id="phone">
<button id="send">Отправить</button>
</form>
</body>
</html>
В файле test.php все просто
echo $_POST['phone'];