html:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>test</title>
<link rel="stylesheet" href="./showbox.css">
</head>
<body>
<script src="./jQuery-1.12.4.js"></script>
<script src="./showbox.js"></script>
<script>
$(function(){
var box = new ShowBox();
box.push('hello world');
});
</script>
</body>
</html>
js:
(function(){
function ShowBox(){};
ShowBox.prototype = {
push:function(content){
var layer = '<div class="showbox_layer"></div>';
if(content){
$('html,body').html(layer);
}
}
}
window.ShowBox = ShowBox;
}());
页面中的jquery正常引入。
问题:运行页面后,F12调出控制台。head部分没有内容,同时页面样式也未能生效。(已确定引入样式)
一只名叫tom的猫
相关分类