如何使用jQuery给页面元素添加disable属性?

2026-03-31 14:091阅读0评论SEO问题
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计309个文字,预计阅读时间需要2分钟。

如何使用jQuery给页面元素添加disable属性?

在jQuery中,可以使用`attr()`方法给元素添加`disabled`属性。语法如下:

javascript$($(selector)).attr('disabled', true);或javascript$($(selector)).attr('disabled', 'disabled');

在jquery中,可以使用attr()方法来给元素增加disable属性,语法“$(selector).attr("disabled",true);”或“$(selector).attr("disabled","disabled");”。

本教程操作环境:windows7系统、jquery1.10.2版本、Dell G3电脑。

disabled 属性规定应该禁用 元素。被禁用的元素既不可用,也不可点击。

jquery给元素增加disable属性的方法

attr() 方法可设置被选元素的属性值。

使用attr() 方法给元素增加disable属性有两种方法

如何使用jQuery给页面元素添加disable属性?

$(selector).attr("disabled",true); $(selector).attr("disabled","disabled");

示例:

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="js/jquery-1.10.2.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ // $("input").attr("disabled",true); $("input").attr("disabled","disabled"); }); }); </script> </head> <body> <input type="text" /> <br><br> <button>增加disable属性</button> </body> </html>

相关视频教程推荐:jQuery教程(视频)

本文共计309个文字,预计阅读时间需要2分钟。

如何使用jQuery给页面元素添加disable属性?

在jQuery中,可以使用`attr()`方法给元素添加`disabled`属性。语法如下:

javascript$($(selector)).attr('disabled', true);或javascript$($(selector)).attr('disabled', 'disabled');

在jquery中,可以使用attr()方法来给元素增加disable属性,语法“$(selector).attr("disabled",true);”或“$(selector).attr("disabled","disabled");”。

本教程操作环境:windows7系统、jquery1.10.2版本、Dell G3电脑。

disabled 属性规定应该禁用 元素。被禁用的元素既不可用,也不可点击。

jquery给元素增加disable属性的方法

attr() 方法可设置被选元素的属性值。

使用attr() 方法给元素增加disable属性有两种方法

如何使用jQuery给页面元素添加disable属性?

$(selector).attr("disabled",true); $(selector).attr("disabled","disabled");

示例:

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="js/jquery-1.10.2.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ // $("input").attr("disabled",true); $("input").attr("disabled","disabled"); }); }); </script> </head> <body> <input type="text" /> <br><br> <button>增加disable属性</button> </body> </html>

相关视频教程推荐:jQuery教程(视频)