本文介绍了jQuery可调整大小的句柄设置程序不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用jQuery UI Resizable,并且我需要在初始化后设置handles选项.

i'm using jQuery UI Resizable, and i need to set handles option after the initialization.

我遵循了 API示例,并且初始化方法效果很好,但使用setter方法似乎不起作用.我想念什么吗?

I followed the API example and initialization method works just fine, but setter method seems not working.Am i missing anything?

// Initialization works fine!
$('#containerGreen').resizable( { handles: "n, e, s, w" } );

// Setter NOT working
$('#containerRed').resizable();
$('#containerRed').resizable( "option", "handles", "n, e, s, w" );

实时 演示

推荐答案

这是一个已知的错误:

问题的解决方法:

这篇关于jQuery可调整大小的句柄设置程序不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-10 22:19