我有3列延伸到相等高度
这是使这3列起作用的JS:SEE DEMO
<script>
$(document).foundation();
</script>
<script>
if(!(/iPhone|iPad|iPod|Android|webOS|BlackBerry|Opera Mini|IEMobile/i.test(navigator.userAgent) )) {
jQuery(document).ready(function($){
var inHeight = $("#wrapper").innerHeight();
$("#wrapper .col").each(function(){
$(this).height(inHeight+"px");
$(this).find('.content').height((inHeight-60)+"px");
});
});
}
</script>
问题是,这仅在刷新页面时有效。有时,我什至需要刷新页面几次才能使其正常工作。有什么办法可以解决此问题?谢谢!
这是我的JS结构:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="js/modernizr.js"></script>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
<script>
if(!(/iPhone|iPad|iPod|Android|webOS|BlackBerry|Opera Mini|IEMobile/i.test(navigator.userAgent) )) {
jQuery(document).ready(function($){
var inHeight = $("#wrapper").innerHeight();
$("#wrapper .col").each(function(){
$(this).height(inHeight+"px");
$(this).find('.content').height((inHeight-60)+"px");
});
});
}
</script>
最佳答案
jQuery(document).ready(function ($) {
if(!(/iPhone|iPad|iPod|Android|webOS|BlackBerry|Opera Mini|IEMobile/i.test(navigator.userAgent))) {
var inHeight = $("#wrapper").innerHeight();
$("#wrapper .col").each(function () {
$(this).height(inHeight + "px");
$(this).find('.content').height((inHeight - 60) + "px");
});
}
});
关于javascript - JS仅在刷新页面后可用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22195303/