dynamically add listener to ajax created content in jQuery

后端 未结 6 1375
死守一世寂寞
死守一世寂寞 2021-01-06 10:02

I am trying to get the html value of a linked clicked. The links are created dynamically with Ajax so I don\'t think .bind will work and I don\'t have latest version with

6条回答
  •  情歌与酒
    2021-01-06 10:22

    You have 2 options -

    1. Use the LiveQuery plugin which is what we used before .live came along
    2. Rebind your function to the click event after each successful ajax call. (Recommended)

提交回复
热议问题