- 帖子
- 909
- 积分
- 1215
- 技术
- 3
- 捐助
- 0
- 注册时间
- 2018-1-17
|
本帖最后由 netdzb 于 2020-12-12 15:55 编辑
js创建按钮的代码,在页面上没有按钮啊
// ==UserScript==
// @name Hello World
// @namespace
// @description
// @include https://www.bixia.org/*
// @include https://bixia.org/*
// ==/UserScript==
(function() {
'use strict';
var button = document.createElement("input"); //创建一个input对象(提示框按钮)
button.setAttribute("type", "button");
button.setAttribute("value", "下载");
var x = document.getElementById("maininfo");
x.appendChild(button);
// Your code here...
})();
如何把按钮显示按钮啊,在笔侠的页面没有显示按钮啊。 |
|