1

您好,我不是 Javascript 方面的专家,也不是 gresemonkey 方面的专家,我需要您的帮助。所以这里是代码:

// ==UserScript==
// @name        Button RT
// @include     *rt*
// @version     1
// ==/UserScript==
// create button
var anid= document.getElementsByClassName( 'value id' )[ 0 ].innerHTML;
var btn = document.createElement( 'input' );
with( btn ) {
  setAttribute( 'onclick', 'window.open(http://www.google.com"+ anid)    ');
  setAttribute( 'value', 'Button!' );
  setAttribute( 'type', 'button' );
}
// append at end
document.getElementsByClassName( 'value id' )[ 0 ].parentNode.appendChild( btn );

那么我做错了什么?因为 anid 变量在 onclick 事件中显示为 anid 而不是它应该显示的。我错过了什么?我从萤火虫那里得到类似的东西

<input type="button" onclick="window.open("http://www.google.com"+ ticketid) " value="Button!!">
4

1 回答 1

0

setAttribute( "onclick", "window.open('http://www.google.com'" + anid + ")");

于 2013-05-07T10:48:01.920 回答