在一个空的 HTML 页面中,我尝试显示一个包含我的应用程序链接的横幅
目前,我只是尝试让它在本地工作,在一个空白页面中。这是我的页面:
<html>
<head>
<title>Hulu Plus</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="author" content="Hulu LLC">
<meta name="google-play-app" content="app-id=MyAppIdIsHere">
<link rel="stylesheet" href="jquery.smartbanner.css" type="text/css" media="screen">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<script src="jquery.smartbanner.js"></script>
<script type="text/javascript">
$(function () {
$.smartbanner({
title: 'Audience Opinion',
author: 'Dunn Solutions Group'
});
})
</script>
</head>
<body>
</body>
</html>
我的 html 页面和 js/css 文件位于同一个文件夹中。路径没有问题。
有谁知道为什么这段代码不起作用?提前致谢!