返回
首页 > 儿童教育

jquery怎么清除元素max-width(最大宽度)

时间: 2023-02-01

清除max-width的方法:1、使用css(),语法“$("指定元素").css("max-width","none")”;2、使用attr(),语法“$("指定元素").attr("style","max-width:none;")”。

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

元素的max-width样式

max-width属性设置元素的最大宽度。

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
  </head>
  <body>
  	<textarea>文本框默认宽度</textarea><br>
    <textarea style="max-width: 400px;">文本框最大宽度400px</textarea>
  </body>
</html>

jquery怎么清除元素max-width(最大宽度)

方法1:使用css()将max-width的值设置为none

<!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() {
					$("textarea").css("max-width","none");
				});
			});
		</script>
		<style type="text/css">
			textarea{
				max-width: 300px;
			}
		</style>
	</head>
	<body>
		<textarea>文本框最大宽度300px</textarea><br><br>
		<button>清除max-width</button>

	</body>
</html>

2、使用attr()将max-width的值设置为none

<!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() {
					$("textarea").attr("style","max-width:none");
				});
			});
		</script>
		<style type="text/css">
			textarea{
				max-width: 300px;
			}
		</style>
	</head>
	<body>
		<textarea>文本框最大宽度300px</textarea><br><br>
		<button>清除max-width</button>

	</body>
</html>

【学习:jQuery教程、web前端】

以上就是jquery怎么清除元素max-width(最大宽度)的详细内容

猜你喜欢

版权所有 Copyright©2023 餐饮美食网 版权所有

粤ICP备15109582号

联系邮箱:187348839@qq.com