Jump to content
  • 0

[AJAX]Модуль "Спасибо"


Capcha
 Share

Question

Всем Здравствуйте.

У меня есть форум, на подобие вашего.

На нём установлен модуль (Спасибо)

У меня встала задача сделать (Спасибо) через АЯКС.

Т.е. при нажатие на "спасибо" или "фу" страница не обновлялась.

ПОжалуйста помогите.

Обращение к скрипту для нажатия "Спасибо" идёт так

http://forum/post_thanks.php?do=post_thanks_add&p=номер поста

для "фу"

http://forum/post_groan.php?do=post_groan_add&p=номер поста

Скажите пожалуйста от чего мне оттолкнуться, приведите говтовые скрипты где есть что-то подобное, где я уже сам постараюсь сделать то что мне нужно.

Зарание спасибо.

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

я юзал такой код:

function xHttp(url, id) {
var xRequest = window.XMLHttpRequest ? new XMLHttpRequest() : (window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : null)
xRequest.onreadystatechange = function() {
if (xRequest.readyState == 4 && xRequest.status == 200) {
document.getElementById(id).innerHTML = xRequest.responseText;
}
};
xRequest.open('GET', url + '&qwerty=' + Math.random(), true);
xRequest.send(null);
return false;
}


onclick="return xHttp('data/edit.php?view=/index_base_x.dat&edit=21&tp=1', 'edit_box');"

в данном случае можно возвращать всплывающий слой с сообщением об удачной операции...

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy