0

试图为我的控制组触发 .click() 事件。

编码的 HTML:

<div data-role="content" class="ui-content" role="main">
            <div id="gradegeoradio" data-role="fieldcontain">
                <fieldset data-role="controlgroup" data-type="horizontal">
                    <legend>
                    </legend>
                    <input id="grade" name="choose" value="Grade" type="radio"/>
                    <label for="grade">
                        Grade
                    </label>
                    <input id="geometry" name="choose" value="Geometry" type="radio"/>
                    <label for="geometry">
                        Geometry
                    </label>
                </fieldset>
            </div>...

DOM 中的 HTML:

<div class="ui-content" role="main" data-role="content"> <div id="gradegeoradio" class="ui-field-contain ui-body ui-br" data-role="fieldcontain"> <fieldset class="ui-corner-all ui-controlgroup ui-controlgroup-horizontal" data-type="horizontal" data-role="controlgroup"><div class="ui-controlgroup-label" role="heading"> </div> <div class="ui-controlgroup-controls"> <div class="ui-radio"> </div> <div class="ui-radio"><input id="geometry" type="radio" value="Geometry" name="choose"> </input><label class="ui-btn ui-corner-right ui-controlgroup-last ui-radio-on ui-btn-active ui-btn-up-c" for="geometry" data-corners="true" data-shadow="false" data-iconshadow="true" data-wrapperels="span" data-theme="c"> <span class="ui-btn-inner ui-corner-right ui-controlgroup-last"> <span class="ui-btn-text">

                        Geometry

</span></span></label></div></div></fieldset></div>

JQuery 试图触发事件:

$("#geometry").click();

事件监听器:

$("#geometry, #grade").click(function(){do stuff after click}

我对这一切都很陌生,任何帮助将不胜感激。抱歉,DOM 中的 HTML 都是集群的,我复制并粘贴了它,但我不知道如何格式化它。

4

3 回答 3

1

只是为了总结评论中给出的答案。

您需要先绑定,然后触发。所以:

$("#geometry, #grade").click(function(){do stuff after click}

必须先到

$('#geometry').click();

示例:http: //jsfiddle.net/X2ExM/1/

于 2013-01-04T17:58:54.753 回答
0

如果您尝试将事件绑定到您的几何单选按钮,我认为这是您尝试做的事情,您可以使用类似这样的东西

$('#geometry, #grade').bind('click', function() {
    //do some thing
});
$('#geometry, #grade').trigger('click');
于 2013-01-04T16:46:30.387 回答
0

采用

   bind and trigger...

使用这个,这是工作

     $('#gradegeoradio').bind('click', function() {
      alert("hello to all");
     });

     $('#gradegeoradio').trigger('click');
于 2013-01-04T16:52:06.160 回答