我是新來的java腳本,我試圖讓這個功能工作,但是我做了什麼我不能讓匿名函數工作,當我切換到正常的功能,它的工作原理。我知道我可以沒有匿名功能的生活,但它真的很煩人。 例如: 在HTML文件中:爲什麼在javasscript中匿名函數不適用於我?
<!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>
<script type="text/javascript" src="ch10_2.js"> </script>
<body>
<a href="http://www.google.com" id="search_link">Go Searching</a>
</body>
</html>
JavaScript文件中
:
var s_link = document.getElementById("search_link");
s_link.onclick = function() {
var is_sure = window.confirm("Are you sure you want to leave?");
if (!is_sure) {
window.alert("OK. You can stay here.");
return false;
}
};
感謝
最後一點是它,謝謝 – Arjen 2011-02-13 14:21:18