【发布时间】:2016-07-16 11:09:49
【问题描述】:
我试图在窗口宽度小于 490 像素时执行此操作。但是 JavaScript 不起作用。
<script>
$(document).ready(function () {
if ($(window).width() < 490) {
$("section div share").click(function () {
$("sharebuttons").slideToggle('slow')
});
} else {
$("section div share").click(function () {
event.preventDefault();
//I would like the action would not happen when the window px are bigger than 490
});
}
});
</script>
我在这里错过了什么?
【问题讨论】: