摘要: 最近在做一个同城交友网站你给我吧(www.niyuewo.com)时写的一个函数与大家分享://清除input中的内容$(document).ready(function(){$("input:text").focus(function () {//捕获触发事件的对象,并设置为以下语句的默认对象 with (event.srcElement)//如果当前值为默认值,则清空 if (value == defaultValue) value = ""}).blur(function (){//捕获触发事件的对象,并设置为以下语句的默认对象 with (eve 阅读全文
posted @ 2014-03-06 17:26 你约我交友网 阅读(915) 评论(0) 推荐(1)