我知道如何使用用户脚本创建按钮,但是我不知道如何使用用户脚本将功能附加到按钮。如何使用用户脚本将功能附加到按钮?我还想为带有用户脚本的按钮添加一个“ id”。我怎么做?谢谢。
var button = document.createElement("BUTTON"); // Create a <button> element
var text = document.createTextNode("CLICK ME"); // Create a text node
button.appendChild(text); // Append the text to <button>
document.body.appendChild(button);
function clickMe() {
alert("Hi");
} //end of function clickMe()
答案 0 :(得分:-2)
使用用户脚本将功能附加到按钮
public string GetStuff(string itemA, string itemB)
{
try
{
GetProxy();
return _expNsProxy.GetStuff(itemA, itemb);
}
catch (Exception ex)
{
IMLogger.Error(ex, ex.Message);
throw ex;
}
finally
{
// CloseProxyConn();
}
}