Creating a "compound" element is as simple as appending one or more children to another element. In your example, you want to bind your data to a selection of <a> elements, and give each <a> a single <circle> child.
First of all, you need to select "a.node" instead of "circle.node". This is because your hyperlinks are going to be the parent elements. If there isn't an obvious parent element, and you just want to add multiple elements for each datum, use <g>, SVG's group element.
Then, you want to append one <a> element to each node in the entering selection. This creates your hyperlinks. After setting each hyperlink's attributes, you want to give it a <circle> child. Simple: just call .append("circle").
vis.selectAll("a.node")
.data(nodes)
.enter().append("a")
.attr("class", "node")
.attr("xlink:href", "whatever.com")
.append("circle")
.attr("class", "node")
.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return d.y; })
.attr("r", 5)
.style("fill", function(d) { return fill(d.group); })
.call(force.drag);
There's a bit of a shortcut here: because you only need a single child, you can use chaining e.g. .enter().append("a").append("circle"). If you want multiple children, you'll want to stash the entering selection (of hyperlinks) in a variable e.g.:
var node = vis.selectAll("a.node")
.data(nodes);
var nodeEnter = node.enter().append("a");
// Now add various children to the entering nodes.
nodeEnter.append("circle");
nodeEnter.append("rect");
Remember that D3 primarily operates on selections of nodes. So calling .append() on the entering selection means that each node in the selection gets a new child. Powerful stuff!
Edit: one more thing, remember that SVG has its own <a> element, which is what I was referring to above. This is different from the HTML one! Typically, you only use SVG elements with SVG, and HTML with HTML.
Second edit: Minor modification to the example, thanks to @mbostock's suggestion below!