码迷,mamicode.com
首页 > 其他好文 > 详细

笔记1

时间:2017-11-02 14:22:57      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:max   checked   tle   index   ado   cte   区别   type   简单   

1.Layers,(工具名称).

2.prop 与  attr的区别. 

关于它们两个的区别,网上的答案很多。这里谈谈我的心得,我的心得很简单:

  • 处理HTML元素本身就带有的 固有属性,使用prop方法。
  • 处理HTML元素自己自定义的DOM属性,使用attr方法。

    以下是官方建议attr(),prop()的使用:

    Attribute/Property.attr().prop()
    accesskey  
    align  
    async
    autofocus
    checked
    class  
    contenteditable  
    draggable  
    href  
    id  
    label  
    location ( i.e. window.location )
    multiple
    readOnly
    rel  
    selected
    src  
    tabindex  
    title  
    type  
    width ( if needed over .width() )  

3.jQuery  each() 方法规定为每个匹配元素规定运行的函数。

	$("input").each(function(index,el){
				$(el).prop("maxlength","200")
			})

  

笔记1

标签:max   checked   tle   index   ado   cte   区别   type   简单   

原文地址:http://www.cnblogs.com/tongbiao/p/7771790.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!