CoolInput is a simple plugin, inspired by Remy Sharp's "hint plugin"that basically creates default text for input boxes.
The default text is derived from the input's title attribute by default and is displayed grayed out in the content area and disappears when the input gains focus and re-appears if no changes are made appears when it loses focus.
Customization options include:
Last update: 17/09/2008
-Alex
attribute: $(”p”).addClass(css中定义的样式类型); 给某个元素添加样式 $(”img”).attr({src:”test.jpg”,alt:”test Image”}); 给某个元素添加属性/值,参数是map $(”img”).attr(”src”,”test.jpg”); 给某个元素添加属性/值 $(”img”).attr(”title”, function() {
jQuery+jQuery UI库的使用 <!DOCTYPE html> <html> <head> <meta name="description" content="math.js | basic usage"> <title>jQuery 扩展</title> <link href="https://code.jquery.com/ui/1.12.1/themes/smoothn
目录 一、基本选择器 二、层次选择器 三、过滤选择器 四、内容过滤选择器 五、属性过滤选择器 六、表单对象选择器 一、基本选择器 1、id选择器--> $("#") 2、class选择器--> $(".") 3、元素选择器--> $("元素标签") 4、*匹配所有元素--> $("*") 5、多元素选择器 --> $("选择器A,选择器B,.....") <!DOCTYPE html> <htm
$().slideToggle("slow/fast") //move the object $().animate({,}) //cool animation tool function $().stop() $().hide(100,callback) //attribute to start after hide finish $().slideUp().slideDown() //co
做项目中要在Jquery UI Datepicker 添加clear按钮, 去官网搜,发现没有此功能的实现。 于是,自己想办法解决,最终实现clear的功能。 现将思路分享给大家: jquery UI datepicker 中 设置了 showButtonPanel: true时,会显示Today ,和Done 两个按钮。 但是那个Done 按钮实在不想要,就是个关闭日历pop的作用。 于是,就
目录 一、单选下拉框 二、多选下拉框 三、既可以手动输入也可以选择的下拉框
$('#searchCity').multiSelect({ // selectableOptgroup: true,//Click on optgroup will select all nested options when set to true. // keepOrder: true, afterSelect: funct
1、$.ajax 执行异步 Ajax 请求。 定义和用法 ajax() 方法通过 HTTP 请求加载远程数据。 //格式: $.ajax({ async:true, //是否异步处理 默认true type:'get', //请求方式 get或post url:'接口地址', //接口地址 dataType:'json',//数据类型 success:fun
jquery独立插件 一、弹出框(pop) 原理: 源码见附件。 二、表格插件 在网页开发中, 常常需要一个表格与列表相结合的控件, 即能像表格(table)一样显示丰富的信息, 又能像列表选择控件(select)一样方便地选择数据. 在桌面应用程序开发中, 许多GUI库都提供了类似的控件, 如.Net的ListView. PagerView是一个好看精巧的分页控件. PagerView+Tabl
一、JQuery插件: JQuery cookie 1、什么是cookie:Cookie就是保存在浏览器上的内容,用户在这次浏览页面的时候向Cookie中保存文本内容,下次再访问页面的时候就可以取出来上次保存的内容,这样就可以得到上次“记忆”的内容。Cookie不是JQuery特有的概念,只不过JQueryCookie把它简化的更好用而已。Cookie就是存储在浏览器里的一些数据。(不能在IE中存