Pytanie : Błąd

Móc Sombody pomagać wirh ten js błąd?

Meldung: "null" ist Nieobowiązujący oder kein Objekt
Zeile: 116
Zeichen: 2
Code: 0
URI: http://wiki.mwz-fm.com/hal lowelt/js/hw_ajax.js
(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:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
var hw_ajax;
funkcja hw_createRequestObject () {
// var wyszukiwarka = navigator.appName;
// jeżeli (wyszukiwarka == "Microsoft Internet Explorer") {
// ro = nowy ActiveXObject ("Microsoft.XMLHTTP");
//} inny {
// ro = nowy XMLHttpRequest ();
//}

      jeżeli (window.XMLHttpRequest)
	  {
		  hw_ajax = nowy XMLHttpRequest ();
	  }
      inny jeżeli (window.ActiveXObject)
	  {
		  hw_ajax = nowy ActiveXObject ("Microsoft.XMLHTTP");
	  }
}

hw_createRequestObject ();


funkcja hw_requestTest ()
{
	//alert (wgScriptPath);
	hw_ajax.open ("dostawać", wgScriptPath+'/hallowelt/lib/hw_ajax.php? ajax_test');
    hw_ajax.onreadystatechange = funkcja ()
	{
    	//alert ("irgendwas ");

		jeżeli (hw_ajax.readyState == 4)
		{
        	var odpowiedź = hw_ajax.responseText;
// window.status = odpowiedź;
		}
	}
	hw_ajax.send (null);
}

funkcja hw_requestWithAnswer (url)
{
    hw_ajax.open ("dostawać", url);
    hw_ajax.onreadystatechange = funkcja ()
	{
	    jeżeli (hw_ajax.readyState == 4)
		{
        	var odpowiedź = hw_ajax.responseText;
			hw_alert (odpowiedź, "ok ");
		}
	}
	hw_ajax.send (null);
}

// powrót wartość musieć dwa część dzielić średnik: a) "tak" lub "nie" dla reload, B) the wiadomość
funkcja hw_requestWithAnswerAndReload (url)
{
    hw_ajax.open ("dostawać", url);
    hw_ajax.onreadystatechange = funkcja ()
	{
	    jeżeli (hw_ajax.readyState == 4)
		{
        	var odpowiedź = hw_ajax.responseText;
			var res = eval (odpowiedź);
			jeżeli ((typeof (res) == "przedmiot" && res [(0)] == "SUC ")) {
				hw_alert (odpowiedź, "reload ");
			}
			inny {
				hw_alert (odpowiedź, "ok ");
			}
		}
	}
	hw_ajax.send (null);
}


funkcja hw_message (tekst)
{
	hw_alert (tekst);
}

funkcja hw_update_select_csv (sel_id, woleć)
{
	woleć = opts.split ("; ");
	hw_update_select (sel_id, woleć);
}

funkcja hw_update_select (sel_id, woleć)
{
	sel = document.getElementById (sel_id);
	jeżeli (sel.options.length > (0))
		dla (i=sel.options.length; i>=0; i--) sel.remove (i);
	dla (i=0; i
           
Attachments:

Odpowiedź : Błąd

OK, teraz ty znać the odpowiedź twój oryginalny pytanie, dlaczego ty dostać the "null" ist Nieobowiązujący oder kein Objekt: Ponieważ the url wracać ważny odpowiedź (null, ale twój kod próba ono twój, bez dalszy czek na zasadność)

Teraz twój kolejny krok dlaczego the php pracować. I być ekspert w wiki, ale ono wydawać się tam  być niektóre mylny instalacja lub konfiguracja.


Inne rozwiązania  
 
programming4us programming4us