0

カスタム Web コントロール *.ascx ファイルがあります。Javaスクリプトを使用して、グリッドビューで更新ボタンをクリックするユーザーをシミュレートしようとしています。.ascx ページの上部に次のスクリプトがあります。

 <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript">

        $(document).keypress(function (e) {
            if (e.which == 13) {
                document.getElementById("LinkButton1").click();
            }
        });

    </script>

「LinkBut​​ton1」は、このテンプレート フィールドにあります。

  <asp:TemplateField ShowHeader="False">
                      <EditItemTemplate>
                          <asp:LinkButton ID="LinkButton1" runat="server" onKeyPress="" UseSubmitBehavior="True" CausesValidation="True" 
                              CommandName="Update" TabIndex="13" Text="Update"  ></asp:LinkButton>
                          &nbsp;<asp:LinkButton ID="LinkButton2" runat="server" CausesValidation="False" 
                              CommandName="Cancel" Text="Cancel"></asp:LinkButton>
                      </EditItemTemplate>
                      <ItemTemplate>

私は何が欠けているか、間違っていますか?

4

2 に答える 2

0

あなたはで試すことができます

document.getElementById('<%# ((GridViewRow)Container).FindControl("LinkButton2").ClientID %>').click();
于 2012-10-10T19:22:57.400 に答える
0

クリックは、リンクボタンがレンダリングされるアンカーではなく、添付されたイベントに対してのみ機能するため、機能しません。

これを使用できます..

$(document).keypress(function (e) {
        if (e.which == 13) {
    simulate(document.getElementById("LinkButton1"), "click");

        }
    });

関数シミュレート(要素、イベント名){変数オプション=拡張(デフォルトオプション、引数[2] || {}); var oEvent、eventType = null;

for (var name in eventMatchers) {
    if (eventMatchers[name].test(eventName)) { eventType = name; break; }
}

if (!eventType)
    throw new SyntaxError('Only HTMLEvents and MouseEvents interfaces are supported');

if (document.createEvent) {
    oEvent = document.createEvent(eventType);
    if (eventType == 'HTMLEvents') {
        oEvent.initEvent(eventName, options.bubbles, options.cancelable);
    }
    else {
        oEvent.initMouseEvent(eventName, options.bubbles, options.cancelable, document.defaultView,
          options.button, options.pointerX, options.pointerY, options.pointerX, options.pointerY,
          options.ctrlKey, options.altKey, options.shiftKey, options.metaKey, options.button, element);
    }
    element.dispatchEvent(oEvent);
}
else {
    options.clientX = options.pointerX;
    options.clientY = options.pointerY;
    var evt = document.createEventObject();
    oEvent = extend(evt, options);
    element.fireEvent('on' + eventName, oEvent);
}
return element;

}

function extend(destination, source) { for (source の var プロパティ) destination[property] = source[property]; 返品先; }

var eventMatchers = { 'HTMLEvents': /^(?:load|unload|abort|error|select|change|submit|reset|focus|blur|resize|scroll)$/, 'MouseEvents': /^(?:click |dblclick|mouse(?:down|up|over|move|out))$/ };

var defaultOptions = { pointerX: 0、pointerY: 0、button: 0、ctrlKey: false、altKey: false、shiftKey: false、metaKey: false、bubbles: true、cancelable: true };

于 2012-10-10T19:26:28.040 に答える