使用crossrider,是否可以在dom中获取链接对象并更改链接的标题。 我正在创建一个检测恶意网站的插件,并在链接前面添加[恶意]。
我可能通过解析字符串来做到这一点,但如果DOM支持它,它将使我的生活变得如此简单。
答案 0 :(得分:4)
Crossrider扩展支持jQuery($)对象,因此您可以使用它从extension.js文件中获取链接,如下所示:
appAPI.ready(function ($) {
// Where <linkSel> is the selector for retrieving the link or links you require
$(<linkSel>).text(); // retrieves the text for the specified <linkSel> object
// OR the following to prefix the link's text with '[Malicious] '
$(<linkSel>).text('[Malicious] ' + $(<linkSel>).text());
});