var obj = function(){ this.hello = function(){ alert("hello"); } }var aPage = function(){ var test = document.getElementById("test"); var obj = new obj(); test.innerHTML = "<a href='#' onclick='obj.hello();'>hello</a>"; }aPage();//这样的代码,在点击 hello 时,会找不到 obj 对象。
Smart猫小萌
茅侃侃
相关分类