ie8 Anchor Link issue
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xh开发者_运维问答tml" xml:lang="en" lang="en">
<head>
<title>Title</title>
</head>
<body>
<a href="testing.html">Testing</a>
</body>
</html>
in ie8 i was not able to navigate to that page.. anchor click is not working...
An anchor link needs to have somewhere to go, for example, <a name="foo"></a>
the anchor link would be <a href="#foo"></a>
精彩评论