ASP.NET MVC + jQuery + IIS6: Multiple Ajax requests

后端 未结 3 674
抹茶落季
抹茶落季 2021-01-15 21:01

I\'m not sure where the problem is...

I have an ajax request that checks the tracking information for a package on a page with a list of packages:

$(         


        
3条回答
  •  耶瑟儿~
    2021-01-15 21:37

    You are calling your ajax request every time you find an element with the class .fedex_status.

    Your line

    $(".fedex_status").each

    is saying do this everytime you find an element with the class .fedex_status.

提交回复
热议问题