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.
在 *.cshtml 文件中,
@{ var tooltip = "Once a day"; } <table> <tr> <th title=@tooltip>A</th> <th title="Once a day">B</th> </tr> </table>
第一个单元格仅显示“一次”,但第二个单元格正确显示“一天一次”。我想在很多地方使用相同的变量。我该如何解决这个问题?
您需要在 周围加上引号@tooltip,您应该查看生成的 HTML 是否正确。
@tooltip
我怀疑它看起来类似于
<table> <tr> <th title=Once a day>A</th> <th title="Once a day">B</th> </tr> </table>