Цитата:
|
Цитата:
<script src="http://code.jquery.com/jquery.js"></script>
<script type="text/javascript">
function clickmoreone() {$.post("http://moisait.php");
});
});
</script>
|
Цитата:
|
http://moisait.php - что это за урла то такая?? может уж тогда http://moisait.ru/get1.php
тогда:
$.post("get1.php", function(data){//функция в любом случае нужна, вы же ответ будете как то обрабатывать.. смысл того что сделали запрос и получив его не обработали его??
alert("Data Loaded: " + data);
});
|
вот лично для вас рабочий вариант раз уж так туго идет:
файл index.html
<html>
<head>
<title>123</title>
</head>
<body>
<div id="response"></div>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script type="text/javascript">
res = $('#response');
function send()
{
$.post("get.php", function(data)
{
res.html(data);
});
}
setInterval(send, 2000);
</script>
</body>
</html>
файл get.php <?=rand(1, 1000);?> |
Цитата:
|
Цитата:
$('#perezagryzka').load(window.location.href + ' #perezagryzka');
|
Цитата:
|
| Часовой пояс GMT +3, время: 13:25. |