我试过了:
function AddEmotion(strUrl)
{
try
{
var cpAdder = new ActiveXObject("QQCPHelper.CPAdder");
if (strUrl != "")
{
cpAdder.AddCustomEmotion(strUrl);
}
}
catch(e)
{
alert("error");
}
}
在 Firefox Greasemonkey 中,但它返回错误。
如何new ActiveXObject
在 Greasemonkey 中使用?
谢谢你^_^我的朋友。