Call jquery function when
    content change

前端 未结 7 714
遇见更好的自我
遇见更好的自我 2021-01-17 08:40

I try to call jQuery function when ul content is changed.

Below is my code

JS

jQuery(document).ready(function($) {

        $(\'.ProductList\         


        
7条回答
  •  伪装坚强ぢ
    2021-01-17 09:38

    $('.ProductList li').live('click',function()
    {
        alert('You just clicked a paragraph!');
    });
    

提交回复
热议问题