The use of $ (this) in Ajax callback functions does not take the resolution of the object _ajax related

Source: Internet
Author: User
The following jquery code is expected to work.
Copy Code code as follows:

$ (". Derek"). each (function () {
$ (this). Click (function () {
var params = $ (this). Parent (). Serialize ();
var obj=$ (this). Parent (). Siblings ("Div#caskcontent");
var form=$ (this). parent ();
$.ajax ({
URL: "Editcaskcontent",
Type: "Post",
Data:params,
DataType: "JSON",
Success:function (e) {
Obj.empty ();
Obj.html ("<font color=\" #00AA00, "> Cross-examine:</font>");
Obj.append (e.caskcontent);
Form.toggle ();
Alert ("Modified successfully!") ");
},
Error:function (e) {
Alert (e);
}
});
});
});

As you can see, before I made the AJAX request, I defined two variables, obj and form, to store two jquery objects, respectively. If you use the $ (this) in the Ajax callback function, the practice proves that you can't get any objects. Specific reasons, I hope the great God message advice.
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.