How to get the data-id attribute?

后端 未结 15 2450
青春惊慌失措
青春惊慌失措 2020-11-21 23:29

I\'m using the jQuery quicksand plugin. I need to get the data-id of the clicked item and pass it to a webservice. How do I get the data-id attribute? I\'m using the .

15条回答
  •  无人及你
    2020-11-21 23:32

    The issue is you are not specifying the option or selected option of dropdown or list, Here is an example for dropdown, i am assuming a data attribute data-record.

    $('#select').on('change', function(){
            let element = $("#visiabletoID");
            element.val($(this).find(':selected').data('record'));
        });
    

提交回复
热议问题