我已经拼凑了一个简单的功能,当一些标志的高度显得太大时调整它们的高度。代码在我第一次测试时运行良好。但现在它只适用于每 3 次和 4 次点击。我怀疑它与文档加载功能与图像加载有关,但我不确定。
<script>
// Get on screen image
$( document ).ready(function()
{
$('#jobcontainer img').each(function() {
if($(this).height()>50) {
$(this).addClass('reduceheight')
}
})
<style>
.reduceheight { width:40%;}
</style>
<table id="jobcontainer" width="100%" border="0" cellpadding="0" cellspacing="0">
<tr class="dknytliste">
<td width="138" valign="top" class="dknytliste" style="padding-right:1em;"><p><a href="" class="dknytlink" title=""></a></p></td>
<td><a href="" class="dknytlink" title=""><img src="" /> </a></td>
</tr>
<tr> </tr>
</table>
在这里查看:http: //dknyt.dk/forside/index2.php 它是右侧的作业容器。
帮助将非常apprciated。