Home > Web Front-end > JS Tutorial > body text

Use of JS based on ajax operation information

php中世界最好的语言
Release: 2018-04-25 16:32:26
Original
1276 people have browsed it

This time I will bring you the use of JS based on ajax operation information. What are the precautions for JS based on ajax operation information. The following is a practical case, let's take a look.

The example of this article describes the JavaScript method of editing information based on ajax. Share it with everyone for your reference. The details are as follows:

// Requires prototype.js
function edit(action, obj) {
  Element.hide(obj);
  var textarea ='<p id="&#39; + obj.id + &#39;_editor"><input type="text" id="&#39; + obj.id + &#39;_edit" name="&#39; + obj.id + &#39;" value="&#39; + obj.innerHTML + &#39;" size="40">';
  var button = '<input id="&#39; + obj.id + &#39;_save" type="button" value="SAVE" /> <input id="&#39; + obj.id + &#39;_cancel" type="button" value="CANCEL" /></p>';
  new Insertion.After(obj, textarea+button);
  Event.observe(obj.id+'_save', 'click', function(){saveChanges(action, obj)}, false);
  Event.observe(obj.id+'_cancel', 'click', function(){cleanUp(obj)}, false);
  $(obj.id+"_edit").focus();
  $(obj.id+"_edit").select();
}
function cleanUp(obj, keepEditable) {
  Element.remove(obj.id+'_editor');
  Element.show(obj);
  if(!keepEditable) showAsEditable(obj, true);
}
function saveChanges(action, obj) {
  var new_content = escape($F(obj.id+'_edit'));
  obj.innerHTML = "Saving...";
  cleanUp(obj, true);
  var success = function(t){editComplete(t, obj);}
  var failure = function(t){editFailed(t, obj);}
  var url = 'poll-ajax.php?a='+action;
  var pars = 'id=' + obj.id + '&content=' + new_content;
  var myAjax = new Ajax.Request(url, {method:'post', postBody:pars, onSuccess:success, onFailure:failure});
}
function editComplete(t, obj) {
  obj.innerHTML = t.responseText;
  showAsEditable(obj, true);
}
function editFailed(t, obj) {
  obj.innerHTML = 'Sorry, the update failed.';
  cleanUp(obj);
}
Copy after login

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

How to partially update the Razor page

Ajax implements Loading effect

The above is the detailed content of Use of JS based on ajax operation information. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!