我不知道该怎么做。
我的标记:
<table>
<tr>
<td id="colLeft">
Lorem ipsum dolor<br/>
Lorem ipsum dolor<br/>
Lorem ipsum dolor<br/>
Lorem ipsum dolor<br/>
Lorem ipsum dolor<br/>
Lorem ipsum dolor.
</td>
<td id="colRight">
<div>1</div>
<div>2</div>
</td>
</tr>
</table>
$(document).ready(function() {
$('#colRight > div').each(function() { // I try to: select all divs in #colRight
$(this).height(function(){ // I try to: sets the height of each div to:
$('#colLeft').height() / $('#colRight > div').length(); // the height of #colLeft divided by the number of divs in colRight.
});
});
});
我要做的是将每个div的高度更改为#colLeft的高度除以#colRight中的div数。
但是,它不起作用。
我从来不明白如何链接函数,也从来没有找到任何人教我。
所以我想请你帮两个忙。
- 为什么我上面的 jQuery 代码没有。
- 有谁知道比 jQuery 网站上的教程更详细地解释它的教程?
感谢您的时间。
亲切的问候,
马吕斯