53

发生错误时,我需要删除一个复选框的“已选中”属性。

.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});
    }
});
*/
4

9 回答 9

97

尝试...

$("#captureAudio").prop('checked', false); 
于 2012-11-26T01:48:08.697 回答
65

这两个都应该工作:

$("#captureImage").prop('checked', false);

和/或

$("#captureImage").removeAttr('checked');

...您可以同时尝试两者。

于 2014-12-17T09:09:33.990 回答
8

试试这个来检查

$('#captureImage').attr("checked",true).checkboxradio("refresh");

并取消选中

$('#captureImage').attr("checked",false).checkboxradio("refresh");  
于 2012-11-27T18:55:14.653 回答
5

unchecked我在checkbox发生错误时使用 prop 属性。您不需要使用删除属性来取消选中您的复选框。

$('input#IDName').prop('checked', false);

它对我来说很好。希望它也对你有用。

于 2019-06-19T05:44:09.347 回答
2

尝试:

$("#captureAudio")[0].checked = false;
于 2012-11-26T02:08:17.667 回答
2

.removeAttr()在布尔属性上使用checked, selected, orreadonly也会将相应的命名属性设置为false.

因此删除了这个选中的属性

$("#IdName option:checked").removeAttr("checked");
于 2017-12-01T13:19:53.797 回答
1

你可以试试$(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});
    }
});
于 2016-02-09T00:53:50.563 回答
0

尝试像这样的 FIDDLE

    try
      {
        navigator.device.capture.captureImage(function(mediaFiles) {
        console.log("works");
         });
      }

    catch(err)
      {
        alert('hi');
        $("#captureImage").prop('checked', false);

      }
于 2012-11-26T06:52:45.200 回答
-7

抱歉,我用上面的代码解决了我的问题:

$("#captureImage").live("change", function() {
    if($("#captureImage:checked").val() !== undefined) {
        navigator.device.capture.captureImage(function(mediaFiles) {
            console.log("works");
        }, function(exception) {
            $("#captureImage").removeAttr('checked').checkboxradio('refresh');
            _callback.error(exception);
        }, {});
    }
});
于 2012-11-27T00:36:15.907 回答