我正在使用 phonegap、html 5、knockout 开发
下面的代码不适用于 2.3 android 但适用于 4.0+ android
<input type="checkbox" data-bind="checked: IsChecked,attr:{Id:id()+'check'}" class="checkBoxInput" />
<label data-bind="attr:{for:id()+'check'}"></label>
可能是脚本错误,但之后没有任何剔除数据加载。
下面的代码(没有 ko 的硬编码)有效
<input type="checkbox" id="test" class="checkBoxInput" />
<label for="test"></label>