我有以下脚本:
<script>
safari.application.addEventListener("command", performCommand, false);
function performCommand(event) {
if (event.command == "change") {
$('a[href="http://example.com"]').attr('href', 'http://sub.example.com');
}
}
</script>
我想要发生的是,当按下菜单栏按钮时,它会运行介于两者之间的代码(在这种情况下,('a[href="http://example.com"]').attr('href', 'http://sub.example.com');
),它会找到所有链接并将它们替换为修改后的版本。我怎样才能做到这一点?