gpt4 book ai didi

jquery - 如何使用 jQuery 只删除一个样式属性?

转载 作者:IT王子 更新时间:2023-10-29 03:24:41 26 4
gpt4 key购买 nike

我有一个具有此属性的 div style="-moz-user-select:none; position:static !important;"。我需要删除 -moz-user-select尝试使用 $(selector).css() 但我不知道要设置什么值,因为它是 "none"

最佳答案

css() 的文档说如果样式属性不在样式表中,将样式属性设置为空字符串将删除该属性:

Setting the value of a style propertyto an empty string — e.g.$('#mydiv').css('color', '') — removesthat property from an element if ithas already been directly applied,whether in the HTML style attribute,through jQuery's .css() method, orthrough direct DOM manipulation of thestyle property. It does not, however,remove a style that has been appliedwith a CSS rule in a stylesheet or<style> element.

因为你的样式是内联的,你可以这样写:

$(selector).css("-moz-user-select", "");

关于jquery - 如何使用 jQuery 只删除一个样式属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5951365/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com