01.
<script language=
"javascript"
>
02.
function
fncAlert(quan, pro_id)
03.
{
04.
05.
06.
alert(pro_id);
07.
if
(window.XMLHttpRequest)
08.
{
09.
xmlhttp=
new
XMLHttpRequest();
10.
}
11.
else
12.
{
13.
xmlhttp=
new
ActiveXObject(
"Microsoft.XMLHTTP"
);
14.
}
15.
xmlhttp.onreadystatechange=
function
()
16.
{
17.
if
(xmlhttp.readyState==4 && xmlhttp.status==200)
18.
{
19.
document.getElementById(
"newPrice"
).innerHTML=xmlhttp.responseText;
20.
}
21.
}
22.
xmlhttp.open(
"GET"
,
"edit_buc.php?pro_id="
+pro_id+
"&quan="
+quan,true);
23.
xmlhttp.send();
24.
}
25.
</script>