我有一个内容 div,我想将其设置为特定高度(50 像素),然后 onclick 更改为“自动”-我可以使用 jQuery 进行这项工作吗?我在 YUI 中有它,请参阅下面的代码
function toggleContent(p, showFull) {
if (showFull) {
YAHOO.util.Dom.setStyle(p, 'height', 'auto');
p.setAttribute('onclick', "toggleContent(this, false);")
} else {
YAHOO.util.Dom.setStyle(p, 'height', '50px');
p.setAttribute('onclick', "toggleContent(this, true);")
}
}