Jump to content
  • 0

Как передать переменные в ajax обработчик?


Koroed
 Share

Question

Есть ajax элемент на странице. В файле-обработчике написано:

if($_POST["ajaxbasketcountid"] && $_POST["ajaxbasketcount"] && $_POST["ajaxaction"] == 'update'){
$arFields = array(
"QUANTITY" => $_POST["ajaxbasketcount"]
);
CSaleBasket::Update($_POST["ajaxbasketcountid"], $arFields);
}

Нужно сделать кнопку, которая передавала бы необходимые переменные в файл. Сделал так:

<form action="/include/basket.php" method=post>
<input type=hidden name="ajaxbasketcountid" value="<?=$item['ID'];?>">
<input type=hidden name="ajaxbasketcount" value="<?=$item['QUANTITY']+1;?>">
<input type=hidden name="ajaxaction" value="update">
<input type=submit name="submit" value="+">

Теперь при нажатии на кнопку в браузере открывается файл-обработчик. Как сделать, чтобы данные передавались, а новая страница не открывалась?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

никакого отношения это к PHP не имеет

Если будешь использовать jQuery, то смотри это

http://www.xhtml.co.il/ru/jQuery/jQuery.post

или это

http://www.xhtml.co.il/ru/jQuery/jQuery.ajax

Edited by Gold Dragon
Link to comment
Share on other sites

  • 0

Есть ajax элемент на странице. В файле-обработчике написано:

if($_POST["ajaxbasketcountid"] && $_POST["ajaxbasketcount"] && $_POST["ajaxaction"] == 'update'){
$arFields = array(
"QUANTITY" => $_POST["ajaxbasketcount"]
);
CSaleBasket::Update($_POST["ajaxbasketcountid"], $arFields);
}

Нужно сделать кнопку, которая передавала бы необходимые переменные в файл. Сделал так:

<form action="/include/basket.php" method=post>
<input type=hidden name="ajaxbasketcountid" value="<?=$item['ID'];?>">
<input type=hidden name="ajaxbasketcount" value="<?=$item['QUANTITY']+1;?>">
<input type=hidden name="ajaxaction" value="update">
<input type=submit name="submit" value="+">

Теперь при нажатии на кнопку в браузере открывается файл-обработчик. Как сделать, чтобы данные передавались, а новая страница не открывалась?

как вариант еще можно:

if($_POST["ajaxbasketcountid"] && $_POST["ajaxbasketcount"] && $_POST["ajaxaction"] == 'update'){
$arFields = array(
"QUANTITY" => $_POST["ajaxbasketcount"]
);
CSaleBasket::Update($_POST["ajaxbasketcountid"], $arFields);
ob_clean();
header('Location: http://'.$_SERVER['HTTP_HOST'].'/ваша_страница/');
}

и не забываем так же прописать ob_start(); в начале страницы

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