私は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>