Use images instead of radio buttons

后端 未结 8 1820
Happy的楠姐
Happy的楠姐 2020-11-22 16:47

If I have a radio group with buttons:

\"Image

... how can I show only images in the select option i

8条回答
  •  暗喜
    暗喜 (楼主)
    2020-11-22 17:34

    Here is a simple jQuery UI solution based on the example here:

    http://jqueryui.com/button/#radio

    Modified code:

    
    
    
      
      jQuery UI Button - Radios
      
      
      
      
      
    
    
    
    

    jQueryUI takes care of the image background so you know which button is checked.

    Beware: If you want to set a button to checked or unchecked via Javascript, you must call the refresh function:

            $('#radio3').prop('checked', true).button("refresh");
    

提交回复
热议问题