考虑以下标签:
<div class="my_class" style="width: 453px; height: 604px;">
// stuff
</div>
我想将其更改为:
<div class="my_class" style="height: 453px; width: 604px;">
// stuff
</div>
我需要使用 jquery 来执行此操作,而且我不一定知道height
and的值width
。我该怎么做呢?
尝试:
var cls = $(".my_class");
var h = cls.height();
var w = cls.width();
cls.css({"width":h,"height":w})
这也将处理您想要一次对多个元素执行此操作的情况:
$('.my_class').each(function(){
var $this = $(this);
var oldWidth = $this.css('width'),
oldHeight = $this.css('height');
$this.css({
width: oldHeight,
height: oldWidth
});
});
我认为这是最简单/最好的方法。
$('.my_class').removeAttr("style").attr({
style: "height: 453px; width: 604px;"
});
试试这个:
$(function() {
var Width = $this.css('width'),
height = $this.css('height');
$(".my_class").width(width).height(height);
});
或者
$(document).ready(function() {
var Width = $this.css('width'),
height = $this.css('height');
$(".my_class").width(604).height(height);
}) ;