討論 » 建立請求

multi tab

§
發表於:2016-11-19
編輯:2016-11-19

multi tab

this is html code
http://pastebin.com/QHp1UAy2

i want script when click Submit (button it will open 2 or 3 tab submit

§
發表於:2016-11-24

dump .... nobody help!!?

§
發表於:2016-11-29

hello hello?

§
發表於:2016-11-30

You have to provide the URL you want the script to work on.

§
發表於:2016-11-30

You would probably want something like this:

document.getElementById("btn").addEventListener("click", function(event) {
var link = document.createElement("a");
link.href = window.location.href;
link.target = "_blank";
link.click();
link.click();
link.click();
});

§
發表於:2016-11-30
編輯:2016-11-30

Here Is html code
http://pastebin.com/QHp1UAy2

its not working

// ==UserScript==
// @name MULTI TAB
// @namespace Cradit By Tom Burris2
// @description Multi Tab Open
// @include *
// @version 1
// @grant none
// ==/UserScript==

document.getElementById("btn").addEventListener("click", function(event) {
var link = document.createElement("a");
link.href = window.location.href;
link.target = "_blank";
link.click();
link.click();
link.click();
});

發表回覆

登入以回復