Home  >  Article  >  Web Front-end  >  jQuery's ajax and traversal array json example code

jQuery's ajax and traversal array json example code

高洛峰
高洛峰Original
2017-01-12 09:33:341476browse

jQuery’s ajax and array traversal json example code

jQuery.ajax({
      type: "POST",
      url: "server.json",
      dataType:'json',
      data: "",
      success: function(msg){
        var title = "";
        jQuery.each(msg,function(key,value){
          alert(value.ec_id+"  "+value.ec_title);
        })
      }
  });

The above jQuery ajax and array array json example code is all the content shared by the editor. I hope it can To give you a reference, I also hope that everyone will support the PHP Chinese website.

For more jQuery ajax and array traversal json example code related articles, please pay attention to the PHP Chinese website!

Statement:
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