$("input[type='checkbox']").attr("checked",true).checkboxradio("refresh");
此代码无效但
$("input[type='checkbox']").attr("checked",true).checkboxradio("refresh");
仅适用于Android设备,但不适用于IOS设备
答案 0 :(得分:0)
线条相同!以下代码适用于iOS。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="jquery.js"></script>
</head>
<body>
<label for="ch">Option</label>
<input type="checkbox" id="ch"/>
<button id="b">Check</button>
<script>
$("#b").click(function() {
$("input[type='checkbox']").attr("checked",true).checkboxradio("refresh");
});
</script>
</body>
</html>