Javascript 填写您必须在上面输入的表格

Javascript fill the form which you must to type on that

此站点:https://launch.stellar.org/#/login

当我使用

$("#username").val("1234");
$(".btn-default").click();
//The site has jquery

我收到一条消息:

Username and password cannot be blank.

虽然用户名已填写。 我尝试了很多代码,但仍然无法正常工作。

此站点存储事件 'change' 的当前值,如果您更改此输入 DOM 中的值,则不会触发事件 'change'。

因为该脚本未存储该更改并表示该输入元素中没有任何内容。

我认为您需要在#username 上触发事件 'change',然后单击提交按钮。

//我来晚了,@Huey已经回答了