“正常”按钮,单击方法都没有的Greasemonkey脚本的工作?(“Normal” button-

2019-07-22 01:19发布

这里是页面上的按钮:

<a id="dispatchOnJobButton" class="ui-btn ui-btn-corner-all ui-shadow ui-btn-up-c" href="#" data-role="button" data-theme="c" data-disabled="false">
<span class="ui-btn-inner ui-btn-corner-all" aria-hidden="true">
<span class="ui-btn-text">Dispatch on next job</span>
</span>
</a>


我需要的Greasemonkey点击它。 我尝试了许多不同的方法,但似乎没有火任何功能它应该运行。

var clickEvent = document.createEvent("MouseEvents");
clickEvent.initEvent("click", true, true);
document.getElementById('dispatchOnJobButton').dispatchEvent(clickEvent);

// also tried
document.getElementById('dispatchOnJobButton').click();
// and this
unsafeWindow.document.getElementById('dispatchOnJobButton').click();

东西任何想法我还能尝试一下呢?

Answer 1:

不是每个按钮的工作原理掀起了点击事件。 此外,目前还不清楚这是否是一个静态承载按钮,或者如果它是由AJAX加载。 (链接到目标页面!)

一般的做法,给出选择和激活上的AJAX驱动的网站的权限控制 。

像这样完整的脚本的东西将在99%的情况的工作:

// ==UserScript==
// @name     _YOUR_SCRIPT_NAME
// @include  http://YOUR_SERVER.COM/YOUR_PATH/*
// @require  http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
// @require  https://gist.github.com/raw/2625891/waitForKeyElements.js
// @grant    GM_addStyle
// ==/UserScript==
/*- The @grant directive is needed to work around a design change
    introduced in GM 1.0.   It restores the sandbox.
*/

waitForKeyElements ("#dispatchOnJobButton", triggerMostButtons);

function triggerMostButtons (jNode) {
    triggerMouseEvent (jNode[0], "mouseover");
    triggerMouseEvent (jNode[0], "mousedown");
    triggerMouseEvent (jNode[0], "mouseup");
    triggerMouseEvent (jNode[0], "click");
}

function triggerMouseEvent (node, eventType) {
    var clickEvent = document.createEvent('MouseEvents');
    clickEvent.initEvent (eventType, true, true);
    node.dispatchEvent (clickEvent);
}


如果它不为你工作, 链接到目标网页,或发布的SSCCE!



文章来源: “Normal” button-clicking approaches are not working in Greasemonkey script?