$("#btn").click(function() {
		$("#ch1").prop("checked", !$("#ch1").prop("checked"));
		$("#ch1").checkboxradio("refresh");

	})
<button id="btn">改变checkbox</button>
   <input type="checkbox" id="ch1"/><label for="ch1">被改的checkbox</label>

用js动态的添加就要加上$("#ch1").checkboxradio(“refresh”);,重新渲染样式。