博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[转]jQuery TextBox Water Mark with asp.net
阅读量:6549 次
发布时间:2019-06-24

本文共 743 字,大约阅读时间需要 2 分钟。

本文转自:

 

I stole majority of this code from

http://www.aspcode.net/A-watermark-texbox-with-JQuery-and-aspnet.aspx

but I added a bit to make it swap css classes as well

$().ready(function() {   swapValues = [];   $(".wm").each(function(i) {     swapValues[i] = $(this).val();     $(this).focus(function() {       if ($(this).val() == swapValues[i]) {         $(this).val("").removeClass("watermark")       }     }).blur(function() {         if ($.trim($(this).val()) == "") { $(this).val(swapValues[i]).addClass("watermark") } }) }) }); To use it, make sure your TextBox has (one of) it's css classes set to "wm". If you want a seperate style to be applied add that initially as well, in my example, it swaps "watermark" in and out as a css class. 

 

 

转载地址:http://iauco.baihongyu.com/

你可能感兴趣的文章
洛谷P1287 盒子与球 数学
查看>>
Bootstrap vs Foundation如何选择靠谱前端框架
查看>>
matlab练习程序(随机游走图像)
查看>>
Linux命令行下运行java.class文件
查看>>
input文本框实现宽度自适应代码实例
查看>>
正确配置jstl的maven依赖,jar包冲突的问题终于解决啦
查看>>
C#开发微信门户及应用(5)--用户分组信息管理
查看>>
怎样实现前端裁剪上传图片功能
查看>>
Apriori 关联算法学习
查看>>
MD5加密
查看>>
ant
查看>>
微信,想要说爱你,却没有那么容易!
查看>>
有关sqlite与sql
查看>>
MapXtreme 2005 学习心得 概述(一)
查看>>
php进一法取整、四舍五入取整、忽略小数等的取整数方法大全
查看>>
WSDP
查看>>
Memory Management
查看>>
JQUERY 对 表格中的数据重排序
查看>>
程序员常用借口指南
查看>>
awk 常用方法
查看>>