本文介绍了水印在MVC3文本框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何设置水印的MVC3。还有一个texbox如果在一个网页的多个文本框,你怎么写每个文本框不同的水印文本?
How do I set watermark for a texbox in MVC3 .Also if there are multiple textboxes in a web page, how do you write different watermark text for each textbox?
<%:Html.TextBoxFor(mdl => mdl.inputTextSearch, Model.inputTextSearch )%>
鸭preciate您回应
Appreciate your response
推荐答案
如果我明白你的问题,你可以通过在
If I understand your question, you can just pass in:
new { placeholder = "my watermark" }
在Html.TextBoxFor的htmlAttributes参数。
as the htmlAttributes parameter in Html.TextBoxFor.
编辑:
您可以通过使用Javascript这里列出也增加对旧版浏览器的支持:
You can also add support for older browsers by using Javascript as outlined here:
http://www.standardista.com/html5-placeholder-attribute-script
这篇关于水印在MVC3文本框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!