我在chrome上使用Tampermonkey并在网站上运行它。我正在尝试使用登录凭据登录。我得到它点击退出,而不是登录。这是我的整个代码:
// ==UserScript==
// @name Blah
// @namespace Blah.com
// @description .
// @include http://Blah.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js
// ==/UserScript==
//function logOut()
//{
// Log out of Blah
// Blah = document.getElementsByName(“Blah");
// for i in 1..2 do
// log in
// //username = Username1
// password = Password1
// {
// {
// greyButtons.click();
// }
// }
//}
function logOut()
{
// Log out of Blah incase already signed in
document.getElementById('Blah').click();
}
logOut();
function logIn()
{
document.getElementById("Header_Login_tbUsername")
//I don't know what to put here
}
logIn();
答案 0 :(得分:0)
document.getElementById('username').value = 'MyLogin';
document.getElementById('password').value = password; // I don't care how you get it
document.getElementById('loginbutton').click();
另外,如果你要使用纯粹的JS,为什么需要jQuery呢?