Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在我的 JS 代码中构建一个 html 表,我需要有类似的东西
<a href="link goes here">click on me</a>
里面a href需要指向一个控制器动作。问题是我如何在我的 JS 中进行操作?
a href
您可以将控制器和操作添加到 href。
<a href='/ControllerName/ActionName'>click</a>