当$(文件).ready(函数()在窗口大于350时停止。
$(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.")
}
提前致谢。
答案 0 :(得分: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>
我可以喜欢吗。
答案 1 :(得分:0)
好的,我刚刚添加了
$("div").empty();
如果窗口是&gt; 只清空所有div 350.