$ delete_commant = L(T( 'X')、$ URL、アレイ( '属性' => アレイ( 'のonclick' => '戻りcall_ajax(123)')));Drupalの呼び出しAJAX機能
私はcall_ajax関数定義に警告を置くとき、それは警告される
ので、私はAjaxのPOSTメソッドを書くために進んで、しかし、私はリフレッシュを取得リンクページをクリックし、Drupalの
にAJAXを実装する方法を
function call_ajax(str){alert(str);
var url = "post.php";
var params = "lorem=ipsum&name=binny";
http.open("POST", url, true);
//Send the proper header information along with the request
http.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
http.setRequestHeader("Content-length", params.length);
http.setRequestHeader("Connection", "close");
http.onreadystatechange = function() {//Call a function when the state changes.
if(http.readyState == 4 && http.status == 200) {
alert(http.responseText);
}
}
http.send(params);
}
私はあなたがvar httpを初期化していないと思います。 –
atleastそれはエラーを知っていることを示すはずですが、Xをクリックすると、単にページ –
をリフレッシュしています。この例では、var xmlhttp; http://www.w3schools.com/ajax/ajax_aspphpを初期化しています。 .asp –