我尝试使用此功能:
这是完整的html:
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<div id="test" style="width:auto;max-width:150px;"></div>
<script>
(function($)
{
$.fn.removeStyle = function(style)
{
var search = new RegExp(style + '[^;]+;?', 'g');
return this.each(function()
{
$(this).attr('style', function(i, style)
{
return style.replace(search, '');
});
});
};
}(jQuery));
$(function(){
$('#test').removeStyle('width');
});
</script>
</body>
</html>
但我遇到了这个问题:
<div id="test" style="max-"></div>