'Prototype'에 해당되는 글 2건
- 2007.09.07 JQuery
- 2007.09.07 Prototype Javascript Framework
AJAX 관련 기능을 편하게 구현할 수 있게 만든 JavaScript Framework
new Ajax.Request('/some_url',
{
method:'get',
onSuccess: function(transport){
var response = transport.responseText || "no response text";
alert("Success! \n\n" + response);
},
onFailure: function(){ alert('Something went wrong...') }
});