jQuery prevent change for select

前端 未结 13 1379
無奈伤痛
無奈伤痛 2020-11-28 10:51

I want to prevent a select box from being changed if a certain condition applies. Doing this doesn\'t seem to work:

$(\'#my_select\').bind(\'change\', funct         


        
13条回答
  •  情书的邮戳
    2020-11-28 11:32

    $('#my_select').bind('mousedown', function (event) {
             event.preventDefault();
             event.stopImmediatePropagation();
         });

提交回复
热议问题