The DisplayFor
helper doesn't generate any HTML tags, it just outputs the formatted text. So you cannot add id
attribute to it. What you could do instead is to wrap it in a tag (div or span):
<div id="width">
@Html.DisplayFor(model => model.ScreenWidth)
</div>
and then be able to manipulate the contents of this tag:
document.getElementById("width").innerHTML = w;
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…