0

おそらくばかげた質問ですが、これについてはご容赦ください。

jQuery/javascriptを使用して、1つのボタンをクリックすると複数のボタンをクリック/送信するようにすることは可能ですか?

これはおそらく質問への回答を容易にするのに役立ちます:

<div class="form-item form-type-select form-item-field-status-10-field-status-und-select">
  <select size="0" name="field_status[10][field_status][und][select]" id="edit-field-status-10-field-status-und-select" class="select-or-other-select form-select chzn-done" style="width: 100px; display: none;">
    <option value="">- select -</option>
    <option selected="selected" value="In">In</option>
    <option value="Gym">Gym</option>
    <option value="Lunch">Lunch</option>
    <option value="Out">Out</option>
    <option value="select_or_other">Other</option>
  </select>
  <div id="edit_field_status_10_field_status_und_select_chzn" class="chzn-container chzn-container-single" style="width: 100px;" title=""><a tabindex="-1" class="chzn-single" href="javascript:void(0)"><span>In</span></a>
    <div style="left: -9000px; width: 98px; top: 25px;" class="chzn-drop">
      <div class="chzn-search">
        <input type="text" autocomplete="off" style="width: 63px;">
      </div>
      <ul class="chzn-results">
        <li style="" class="active-result" id="edit_field_status_10_field_status_und_select_chzn_o_0">- select -</li>
        <li style="" class="active-result result-selected" id="edit_field_status_10_field_status_und_select_chzn_o_1">In</li>
        <li style="" class="active-result" id="edit_field_status_10_field_status_und_select_chzn_o_2">Gym</li>
        <li style="" class="active-result" id="edit_field_status_10_field_status_und_select_chzn_o_3">Lunch</li>
        <li style="" class="active-result" id="edit_field_status_10_field_status_und_select_chzn_o_4">Out</li>
        <li style="" class="active-result" id="edit_field_status_10_field_status_und_select_chzn_o_5">Other</li>
      </ul>
    </div>
  </div>
</div>
4

5 に答える 5

8

こちらです:

<input type="button" id="triggerAll">

<input type="button" class="button1">
<input type="button" class="button2">
<input type="button" class="button3">
$('#triggerAll').on('click',function(){
    $('.button1,.button2,.button3').trigger('click');
});

またはこの方法:

<input type="button" id="triggerAll">

<input type="button" class="processed">
<input type="button" class="processed">
<input type="button" class="processed">
$('#triggerAll').on('click',function(){
    $('.processed').trigger('click');
});

またはこの方法:

<form class="monitorChanges">
    <label>
        Pick one:
        <select data-defaultvalue="" name="other">
            <option value="" selected></option>
            <option value="1">One</option>
            <option value="2">Two</option>
            <option value="3">Three</option>
            <option value="4">Four</option>
        </select>
    </label>
    <label>
        Other:
        <input type="text" data-defaultvalue="" name="other">
    </label>
    <input type="submit">
</form>

<input type="text" value="Trigger All" id="triggerAll">
$('.monitorChanges').on('change keyup',"input,textarea,select",function(){
    var defaultValue = $(this).data('defaultvalue');

    if ($(this).val() !== defaultValue){
        $(this).parent().parent().find('input[type="submit"]:not(.processed)').addClass('processed');
    }
    else {
       $(this).parent().parent().find('input[type="submit"].processed').removeClass('processed');
    }
});

$('#triggerAll').on('click',function(){
    $(this).parent().find('form input[type="submit"].processed').trigger('click');
});
于 2013-04-10T13:20:29.533 に答える
1
$('#mybtnId').click(function(){
    $('button, input[type=button]').not('#mybtnId').trigger('click');
});
于 2013-04-10T13:20:52.453 に答える
0

私は私のためにトリックを行うソリューションを思いつきました:

// Find input(s) that have changed. Add class to their hidden submit button.
$(function() {
    $("input, select").change(function() {
        $(this).closest('td').find('input.ajax-processed').addClass("changed");
    });
});

// One button to submit all input(s) that have changed.
$('.submit-all').click(function(){
    $('.changed, input[type=button]').not('.submit-all').trigger('click');
});

皆さん、ご協力ありがとうございます。この獣を機能させるには、あなたのすべてのアドバイスの組み合わせが必要でした.また、私が達成しようとしていたことを再考するのにも役立ちました.

于 2013-04-11T15:40:34.143 に答える
0

純粋なJavaScriptを使用して、それが私にとってうまくいったことです。2 つの reset を含むonclickリスト項目 ( ) でイベントを使用しました。それらは異なる を制御し、そのうちの 1 つがリスト項目 ( ) に表示されません。もちろん、どのタイプの入力でも同じ実装を行うことができます。libuttonformstyle="display:none;"

<ul>
  <li onclick="document.getElementById('btn-clear-1').click(); document.getElementById('btn-clear-2').click();">
    <input class="btn" id="btn-clear-1" form="frm1" type="reset" value="Clear" />
    <input class="btn" id="btn-clear-2" form="frm2" type="reset" value="Clear" style="display:none;" />
  </li>
</ul>

しかし、私がしたことは、私が探していたものにとって不要なコードです。可能性があります<li onclick="document.getElementById('#frm1').reset(); document.getElementById('#frm2').reset();">Clear</li> (このボードでの不適切なコーディングを避けるためにのみコメントが作成されています)

于 2014-03-07T13:32:22.783 に答える