百度搜索 添加按鈕
// ==UserScript==
// @name test
// @namespace AceScript Scripts
// @match https://www.baidu.com/
// @grant none
// ==/UserScript==
(function () {
'use strict';
console.log('我的腳本加載了');
var button = document.createElement("button"); //創(chuàng)建一個input對象(提示框按鈕)
button.id = "id001";
button.textContent = "百度二下";
button.style.width = "60px";
button.style.height = "20px";
button.style.align = "center";
//綁定按鍵點擊功能
button.onclick = function (){
console.log('點擊了按鍵');
//為所欲為 功能實現(xiàn)處
alert("你好");
return;
};
var x = document.getElementsByClassName('btn_wr s_btn_wr bg')[0];
//在瀏覽器控制臺可以查看所有函數(shù),ctrl+shift+I 調出控制臺,在Console窗口進行實驗測試
x.appendChild(button);
//var y = document.getElementById('s_btn_wr');
//y.appendChild(button);
})();
聯(lián)系客服