我目前正在处理一个包含 javascript 函数的 html 页面,我想添加一个“if”,以便该函数仅在页面宽度超过 500 像素时才会激活。这是功能:
$(function(){
$("#page-wrap").wrapInner("<table cellspacing='30'><tr>");
$(".post").wrap("<td>");
});
我想我应该添加类似的东西, "if (screen.width > 500px)"
但我不知道如何使它工作。
谢谢