我是angular2的初學者,我在jquery和html中有下面的代碼。 我必須在angular2中實現它。做這個的最好方式是什麼。 我的一個朋友建議我處理元素參考。但我沒有任何想法 請用示例和解釋給我建議最佳方式。如何在Angular中使用jquery的父級概念?
<html>
<head>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script>
$(document).ready(function(){
$('.btn').click(function(){
$(this).parent().css("background-color","yellow");
})
})
</script>
</head>
<body>
<div style="background-color:black; width:200px; height:50px; margin:10px;">
<input class="btn" type="button" value="change color" style="" />
</div>
<div style="background-color:cyan; width:200px; height:50px; margin:10px;">
<input class="btn" type="button" value="change color" style="" />
</div>
<div style="background-color:green; width:200px; height:50px; margin:10px;">
<input class="btn" type="button" value="change color" style="" />
</div>
</body>
</html>
開始學習Angular的概念。考慮使用Angular CLI來輕鬆啓動。 https://angular.io/tutorial – MeMeMax
你好。首先了解角度2是什麼以及它是如何工作的。訪問https://angular.io鏈接獲取更多關於angular的信息,然後自己嘗試。 –
這個問題是不是與角度cli @MeMeMax –