dongshiru5913 2011-07-23 01:34
浏览 463
已采纳

如何创建一个JSON(jQuery),发布一个完整的数组

I'm trying to create an event handler (jQuery) that will pick all elements of specific class, each unique ID value, post json array, loop through php, finally update view.

I have no problem with selecting one instance.

**Mostly looking how to create the array of id,value to pass for processing.

Thank You

  • 写回答

3条回答 默认 最新

  • douchang6770 2011-07-23 01:37
    关注

    You can do something like this (As a strting point):

    $('.class').each(function(){
     // do somthing with $(this)
    });
    

    Of course, if you post some more details, I can expand on this.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?