JS : onbekend probleem met xmlhttp=GetXmlHttpObject();
Henk Jacobse
02/02/2011 07:32:23Goedemorgen,
Ik heb een stukje js gekopieerd maar bij de regel xmlhttp=GetXmlHttpObject(); stokt het script.
Wie heeft enig idee wat het probleem kan zijn.
Ik heb een stukje js gekopieerd maar bij de regel xmlhttp=GetXmlHttpObject(); stokt het script.
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
function selbox(value, checked)
{
var explode = value.split("-");
var url = "lib/client/cms/selbox.php";
url = url+"?id="+explode[0];
url = url+"&item="+explode[1];
url = url+"&checked="+checked;
//alert("Url = "+url);
xmlhttp=GetXmlHttpObject();
if (xmlhttp==null){
alert ("Browser does not support HTTP Request");
return;
xmlhttp.open("GET",url,true);
xmlhttp.send(null);
}
{
var explode = value.split("-");
var url = "lib/client/cms/selbox.php";
url = url+"?id="+explode[0];
url = url+"&item="+explode[1];
url = url+"&checked="+checked;
//alert("Url = "+url);
xmlhttp=GetXmlHttpObject();
if (xmlhttp==null){
alert ("Browser does not support HTTP Request");
return;
xmlhttp.open("GET",url,true);
xmlhttp.send(null);
}
Wie heeft enig idee wat het probleem kan zijn.
Gewijzigd op 02/02/2011 07:34:15 door Henk Jacobse
PHP hulp
26/12/2024 03:04:46Kris Peeters
02/02/2011 08:36:14Dit toevoegen aan je code
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
function GetXmlHttpObject()
{
var xmlHttp1=null;
var xmlHttp2=null;
var xmlHttp3=null;
try
{
// Firefox, Opera 8.0+, Safari
xmlHttp1=new XMLHttpRequest();
xmlHttp2=new XMLHttpRequest();
xmlHttp3=new XMLHttpRequest();
}
catch (e)
{
// Internet Explorer
try
{
xmlHttp1=new ActiveXObject("Msxml2.XMLHTTP");
xmlHttp2=new ActiveXObject("Msxml2.XMLHTTP");
xmlHttp3=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
xmlHttp1=new ActiveXObject("Microsoft.XMLHTTP");
xmlHttp2=new ActiveXObject("Microsoft.XMLHTTP");
xmlHttp3=new ActiveXObject("Microsoft.XMLHTTP");
}
}
return xmlHttp;
}
{
var xmlHttp1=null;
var xmlHttp2=null;
var xmlHttp3=null;
try
{
// Firefox, Opera 8.0+, Safari
xmlHttp1=new XMLHttpRequest();
xmlHttp2=new XMLHttpRequest();
xmlHttp3=new XMLHttpRequest();
}
catch (e)
{
// Internet Explorer
try
{
xmlHttp1=new ActiveXObject("Msxml2.XMLHTTP");
xmlHttp2=new ActiveXObject("Msxml2.XMLHTTP");
xmlHttp3=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
xmlHttp1=new ActiveXObject("Microsoft.XMLHTTP");
xmlHttp2=new ActiveXObject("Microsoft.XMLHTTP");
xmlHttp3=new ActiveXObject("Microsoft.XMLHTTP");
}
}
return xmlHttp;
}
Henk Jacobse
02/02/2011 12:09:39Oke, thx
Ga ik even proberen
Toevoeging op 03/02/2011 07:13:09:
Oke dat is gelukt.
Ga ik even proberen
Toevoeging op 03/02/2011 07:13:09:
Oke dat is gelukt.
Gewijzigd op 03/02/2011 08:34:40 door Henk Jacobse