我在stackoverflow上找到了这个解决方案。但是如果没有 jquery,这怎么可能呢?
$('a[href^=http]').click(function(e){
e.preventDefault();
var activity = new MozActivity({
name: "view",
data: {
type: "url",
url: $(this).attr("href")
}
});
});