我是jQuery的初学者,我有修复背景的问题,图像在1秒内出现显示
<body id="content" style="display: none;background-image:url('images/wood.jpg'); ">
答案 0 :(得分:2)
您将显示设置为无,因此1秒后您将需要将其删除。
您应该使用window.setTimeout函数。 1000毫秒= 1秒。
您可以使用jQuery设置visiblity,如下所示:
$("#content").show();
所以完整的代码示例如下:
setTimeout(function(){
$("#content").show();
},1000)