エラーが発生した場合、1つのチェックボックスの「checked」属性を削除する必要があります。
.removeAttr関数は機能しません。何か案が? :/
HTML
<div data-role="controlgroup" data-type="horizontal" data-mini="true" style="margin-left: auto; margin-right: auto; width: 100%; text-align: center;">
<input type="checkbox" id="captureImage" name="add_image" class="custom" />
<label for="captureImage" data-icon="checkbox">Image</label>
<input type="checkbox" id="captureAudio" name="add_audio" class="custom" />
<label for="captureAudio" data-icon="checkbox">Audio</label>
<input type="checkbox" id="captureVideo" name="add_video" class="custom" />
<label for="captureVideo" data-icon="checkbox">Video</label>
</div>
Javascript
$("#captureImage").live("change", function() {
// $("#captureImage").prop('checked', false); // Here Work
if($("#captureImage:checked").val() !== undefined) {
navigator.device.capture.captureImage(function(mediaFiles) {
console.log("works");
}, function(exception) {
$("#captureImage").prop('checked', false); // Not Works Here
_callback.error(exception);
}, {limit: 1});
}
});
/*
$("#captureAudio").live("change", function() {
if($("#captureAudio:checked").val() !== undefined) {
navigator.device.capture.captureAudio(function(mediaFiles) {
console.log("audio");
}, function() {
$("#captureAudio").removeAttr('checked');
_callback.error;
}, {limit: 1});
}
});
$("#captureVideo").live("change", function() {
if($("#captureVideo:checked").val() !== undefined) {
navigator.device.capture.captureVideo(function(mediaFiles) {
console.log("video");
}, function(exception) {
$("#captureVideo").prop('checked', false);
_callback.error(exception);
}, {limit: 1});
}
});
*/
試してみてください...
$("#captureAudio").prop('checked', false);
これらの両方が機能するはずです:
$("#captureImage").prop('checked', false);
および/または
$("#captureImage").removeAttr('checked');
...両方を一緒に試すことができます。
チェックしてみてください
$('#captureImage').attr("checked",true).checkboxradio("refresh");
そしてチェックを外します
$('#captureImage').attr("checked",false).checkboxradio("refresh");
試してください:
$("#captureAudio")[0].checked = false;
$(this)
を試すことができます:
$("#captureAudio").live("change", function() {
if($(this).val() !== undefined) { /* IF THIS VALUE IS NOT UNDEFINED */
navigator.device.capture.captureAudio(function(mediaFiles) {
console.log("audio");
}, function() {
$(this).removeAttr('checked'); /* REMOVE checked ATTRIBUTE; */
/* YOU CAN USE `$(this).prop("checked", false);` ALSO */
_callback.error;
}, {limit: 1});
}
});
checked
、selected
、またはreadonly
などのブール属性で.removeAttr()
を使用すると、対応する名前付きプロパティがfalse
に設定されます。
したがって、このチェックされた属性を削除しました
$("#IdName option:checked").removeAttr("checked");
このようなものを試してください FIDDLE
try
{
navigator.device.capture.captureImage(function(mediaFiles) {
console.log("works");
});
}
catch(err)
{
alert('hi');
$("#captureImage").prop('checked', false);
}
エラーが発生した場合、unchecked
the checkbox
にprop属性を使用します。チェックボックスをオフにした場合、removeプロパティを使用する必要はありません。
$('input#IDName').prop('checked', false);
それは私のためにうまく機能しています。それがあなたにも役立つことを願っています。