Tampermonkey 到 select 一个下拉值。它没有 ID 或名称,只有一个 class?

Tampermonkey to select a dropdown value. It has no ID or name, just a class?

我正在为 ConverTo:
这样的网页编写 Tampermonkey 代码 它应该自动 select 下拉列表中的第二个选项:

<select class="format-select">
    <option value="mp3">MP3</option>
    <option value="mp4">MP4 (video)</option>
</select>

,页面完全加载后数秒。
但是没有任何反应。

我的代码:

......
// @match      https://www.converto.io/*
// @require    http://code.jquery.com/jquery-1.11.0.min.js
// ==/UserScript==

$(document).ready(function(){
setTimout(test(),10000); 
function test() 
{ 
    $(".format-select").val('mp4'); 
}
})();

请帮忙!

参见Choosing and activating the right controls on an AJAX-driven site
许多 AJAX 驱动的控件不能随便更改;他们还必须接收按键事件,以便页面设置所需的状态。

ConverTo 的情况下,select 似乎期望 :

  1. 点击事件。
  2. 价值改变。
  3. 更改事件。

您可以发送带有代码的序列,例如完整的工作脚本:

// ==UserScript==
// @name     _ConverTo, Automatically select mp4
// @match    https://www.converto.io/*
// @require  http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// @require  https://gist.github.com/raw/2625891/waitForKeyElements.js
// @grant    GM_addStyle
// ==/UserScript==
//- The @grant directive is needed to restore the proper sandbox.

waitForKeyElements (".format-select:has(option[value=mp4])", selectFinickyDropdown);

function selectFinickyDropdown (jNode) {
    var evt = new Event ("click");
    jNode[0].dispatchEvent (evt);

    jNode.val('mp4');

    evt = new Event ("change");
    jNode[0].dispatchEvent (evt);
}

为了相同的目的,还有其他可能的状态序列。