jquery禁用a标签方法1: $(document).ready(function () { $("a").each(function () { var textValue = $(this).html(); if (textValue == "XX概况" || textValue == "服务导航") { $(this).css("cursor", "default"); $(this).attr('h…
<script src="jquery.min.js"></script> <br/><input type="text" id="first" disabled> first <br/><input type="text" id="second" disabled="disabled"> second <br…
禁用:.attr("disabled","disabled"); 启用:.removeAttr("disabled");…
jQuery计算文本宽度的原理是利用html提供的<pre>标签,向dom中动态添加<pre>标签,标签里的内容就是要测试长度的文本,获取完长度之后再删除刚才添加的<pre>标签,从而可取到文本的大概长度了.为什么要用标签而不用其他标签呢,那来看看<pre>标签的特性吧:pre 元素可定义预格式化的文本.被包围在 pre 元素中的文本通常会保留空格和换行符;而文本也会呈现为等宽字体. <pre>标签的一个常见应用就是用来表示计算机的源代码.需要注…
一. input标签的accept属性 当我们上传文件或者注册上传头像时,我们可以一般都是使用: <input type="file" id="my_file"> 但是这样的话,所有文件都会显示出来,这里以上传头像为例,一点击选择文件,所有跟图片无关的文件也会显示出来: 这时可以给input标签增加一个accept属性,让它只显示图片相关的文件: <input type="file" id="my_file"…
input切换编辑和不可编辑模式 在项目中我们经常会用到这样的效果,点击一下不可编辑的input 标签,变成可编辑的input标签.用法如下 <input type="text" readonly id="content"  placeholder="请输入您的部门"> 可编辑状态: $(“#content”).attr("readOnly",false); 不可可编辑状态: $(“#content”).attr(…
移除或禁用html元素的点击事件可以通过css实现也可以通过js或jQuery实现. 一.CSS方法 .disabled { pointer-events: none; } 二.jQuery方法 方法一 $(this).click(function (event) { event.preventDefault(); } 方法二 $('a').live('click', function(event) { alert("抱歉,已停用!"); event.preventDefault();…
<input>标签因其形式多样.功能强大,当之无愧成为了WEB前端开发人员最钟爱的元素之一.下面就来对<input>做一个全面的剖析: 标签定义: <input> 标签用于搜集用户信息. 标签使用: <input> 元素在 <form> 元素中使用,用来声明允许用户输入数据的 input 控件.(根据不同的 type 属性值,输入字段拥有很多种形式.) 标签说明: 1)HTML 4.01 与 HTML5之间的差异: 在 HTML 4.01 中,…
1.清除 input 标签默认样式 input { -moz-appearance: none; outline: 0; text-decoration: none; outline: none; border: 0; } 2.input 标签属性 placeholder 的修改  =>input::webkit-input-placeholder input::-webkit-input-placeholder { font-size: px2rem(22); color: rgba(136,…
用于搜集用户信息. <input type="text" name="fname" /> 标签属性 type 规定 input 元素的类型.输入字段可以是文本字段.复选框.掩码后的文本控件.单选按钮.按钮等等. type可能的值: button 可点击按钮 <head> <script type="text/javascript"> function msg() { alert("Hello worl…