Skip to content

Instantly share code, notes, and snippets.

@pengwll
Last active December 23, 2015 01:29
Show Gist options
  • Save pengwll/6560844 to your computer and use it in GitHub Desktop.
Save pengwll/6560844 to your computer and use it in GitHub Desktop.

web widget js demo

  • ###checkbox

判断checkbox是否被选中

	if($("#checkbox-v-a").is(':checked'))
	{
    	advice = $("#lb-v-a").text();
	}
  • ###button 设置button disable

      $("#submit").button('disable/enable');
    
  • ###selected menu 获取selected menu选中option的文本

      $("#select option:selected").text();
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment