谁能告诉我有什么问题:
<a href="javascript:void();" onclick="myFunc()"> Execute function </a>
在 Chrome 检查器中,我得到的错误是:
未捕获的 SyntaxError:意外的令牌 <
以下是我的代码的外观:
<!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/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<div id="root"></div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<a href="javascript:void();" onclick="myFunc()"> Execute function </a>
<script>
function myFunc() {
// some code here
}
</script>
</body>
</html>