Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.9k views
in Technique[技术] by (71.8m points)

.net - Change dynamically component of View

I am trying make a ticket system with asp core, and the point where I get stuck is; i need to change a part of view when click a link in view. how can i do that?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Since you are reacting to a click event that means you will be manipulating the already rendered HTML document in the browser. You can use multiple ways of manipulating the DOM. Plain javascript, or some framework, such as JQuery or Angular.

This is an example of reacting to the click event in javascript:

<div id='partOfView'>
    Some text.
<div>

<button onclick="buttonClicked()">Click me!</button>

<script>
    function buttonClicked() {
        var el = document.getElementById('partOfView');
        el.style.backgroundColor = 'red';
    }
</script>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...