jquery 可根据属性调整大小
我设法调整多个类的大小
$('.s').resizable({ alsoResize: '.1,.2,.3' });
,但我想从属性中获取可调整大小的对象 在主要对象中我调整大小。我怎样才能得到那里的属性值?
我尝试过:
<script>
$(document).ready(function() {
$( ".resizable" ).resizable({
maxHeight: 100,
maxWidth: 162,
minHeight: 14,
minWidth: 162,
alsoResize: "."+$(this).attr('number')+" "
});
});
</script>
但它不起作用。 有人可以帮忙吗?
这是一个用于测试的jfiddle: Fiddle
i managed to resize multiple classes
$('.s').resizable({ alsoResize: '.1,.2,.3' });
but i want to get the alsoresizable objects from the attribute
in the main object i resize. how can i get the attribute values there?
i tried:
<script>
$(document).ready(function() {
$( ".resizable" ).resizable({
maxHeight: 100,
maxWidth: 162,
minHeight: 14,
minWidth: 162,
alsoResize: "."+$(this).attr('number')+" "
});
});
</script>
but its not working.
can someone help?
here is a jfiddle for testing: Fiddle
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
$.each
或$.map
构建列表:You could build up the list with
$.each
or maybe$.map
:这有效:
js:
html:
this works:
js:
html: