0

当窗口大于 350 时 $(document).ready(function() 停止。

$(document).ready(function(){
if ($(window).width() > 350 ){
alert ("No!!! stop");
// I want to stop loading the page altogether if window is less than 350.
return false;
}
else if ($(window).width() < 350 ) {
alert ("Ok continue.")
}

提前致谢。

4

2 回答 2

1

$(document).ready(function() 在页面加载后执行。如果你把你的javascript放在你的身体顶部,你可以这样做,所以它会在页面加载之前执行

<html>
<body>
<script type='text/javascript'>
   //your actions here
   //for example redirect to empty page that says stop your width is too large
   //another solution is to spam alerts() and if there is no alerts reload page to spam more
   //show page with javascript
   //$("body').html('STAPH')
</script>
...
</body>
</html>

我可以喜欢吗?

于 2013-09-30T17:31:51.493 回答
0

好的,我刚刚添加

$("div").empty(); 

如果窗口> 350,则只清空所有 div。

于 2013-09-30T17:46:06.963 回答