首頁  >  文章  >  web前端  >  html中怎麼去掉屬性值

html中怎麼去掉屬性值

青灯夜游
青灯夜游原創
2021-12-14 15:06:392503瀏覽

html中去掉屬性值的方法:1、使用attr()方法設定指定屬性值為空字串,語法「$(元素).attr("屬性名稱","")」;2 、使用removeAttr()方法移除指定的屬性,語法「$(元素).removeAttr("屬性名稱")」。

html中怎麼去掉屬性值

本教學操作環境:windows7系統、jquery1.10.2&&HTML5版、Dell G3電腦。

html中去掉屬性值

#1、使用attr()方法設定指定屬性值為空字串

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("button").click(function(){
    $("img").attr("width","");
  });
});
</script>
</head>
<body>
<img  src="img/2.jpg"    style="max-width:90%"/ alt="html中怎麼去掉屬性值" >
<br />
<button>去除width属性值</button>
</body>
</html>

html中怎麼去掉屬性值

2、使用removeAttr()方法移除指定的屬性

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("button").click(function(){
    $("img").removeAttr("width");
  });
});
</script>
</head>
<body>
<img  src="img/2.jpg"    style="max-width:90%"/ alt="html中怎麼去掉屬性值" >
<br />
<button>去除width属性</button>
</body>
</html>

html中怎麼去掉屬性值

推薦教學:html影片教學jQuery教學(影片)

以上是html中怎麼去掉屬性值的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn