0
我創建像這樣的敲落賽圖(名稱是隨機生成)按鈕: Diagram創建NG-點擊treant.js圖
創建圖形我創建樹精感謝輸入在我angularJS Java的腳本文件:
/*
Returns the HTML representing a match
*/
var populateGraphCell = function(match) {
var content = "";
if(match.registration_1 != undefined) {
content += registration_to_html(match.registration_1);
} else {
content += "<button ng-click='bonjour()'>Add registration 1</button>";
}
content += "<br />";
if(match.registration_2 != undefined) {
content += registration_to_html(match.registration_2);
} else {
content += "<button>Add registration 2</button>";
}
content += "<br />";
if(match.court != undefined) {
content += court_to_html(match.court);
} else {
content += "<button>Add court</button>";
}
return content;
}
$scope.bonjour = function() {
console.log("hello")
}
,但我想知道是否有使用方式NG點擊?谷歌瀏覽器調試模式下,我可以看到NG單擊元素,但是當我點擊就沒有任何反應
非常感謝,我試圖這樣做。但是,請你解釋一下爲了在這裏使用指令我應該怎麼做? –
你能解釋一下你想要的嗎?我會建議開一個新的問題,因爲這是一個完全不同的問題。 –
你說最好是通過創建某種類型的指令來完成它,但我並不真正瞭解我應該怎麼做 –