博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery checkbox checked
阅读量:6293 次
发布时间:2019-06-22

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

1.question:

   when first operate the checkbox with sentence like : 

        $("input[type=checkbox]").attr("checked",true);

        $("input[type=checkbox]").attr("checkec",false);

    it will succeed;

   but the second time , it will failed.why??

2.Cause:

  if the attribute name of the tag is belong to the tag(the html defined), the prop(name,value) method works,

  if the attribute name of the tag is custom , then attr(name, value) method works.

3. Solution:

   $("input[type=checkbox]").prop("checked",true);

  $("input[type=checkbox]").prop("checked",false);

  it works.

转载于:https://www.cnblogs.com/rocky-fang/p/5259139.html

你可能感兴趣的文章
使用Silverlight 2实现水中倒影效果
查看>>
aria2下载工具命令行和图形化界面使用
查看>>
SWT事件的四种写法
查看>>
AI算法透明不是必须,黑箱和可解释性可简化为优化问题
查看>>
生产环境一个like模糊匹配SQL优化
查看>>
linux wget命令详解
查看>>
Android真机运行错误INSTALL_FAILED_MEDIA_UNAVAILABLE
查看>>
WindowsServer2012史记4-重复数据删除的魅力
查看>>
Win2008 R2实战之只读域控制器部署(图)
查看>>
在Android源码树中添加userspace I2C读写工具(i2c-util)
查看>>
Nginx upstream的几种分配方式
查看>>
《互联网运营智慧》第7章“简单cdn”正式版下载
查看>>
如何解决SQL Server 2008 R2中“阻止保存要求重新创建表的更改”的问题!
查看>>
基于Xcode原型驱动的iOS应用设计
查看>>
SOA标准之----SCA架构思想
查看>>
9.VMware View 4.6安装与部署-connection server(View Replica Server)
查看>>
项目管理和产品管理绉议
查看>>
一步一步SharePoint 2007之三十七:在SharePoint中实现Workflow(3)——运行Workflow
查看>>
后端码农谈前端(CSS篇)第三课:选择器
查看>>
Rafy 领域实体框架设计 - 重构 ORM 中的 Sql 生成
查看>>