在一个空的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文件位于同一个文件夹中。没有路径问题。
有谁知道为什么这段代码不起作用? 提前谢谢!
答案 0 :(得分:3)
默认选项是仅显示Android或iOS设备上的栏。如果您在桌面上打开该页面,则不会显示任何内容。你可以设置强制&#39;选项&#39; windows&#39;为了让它出现在您的桌面上。
$(function () { $.smartbanner({ daysHidden: 0, daysReminder: 0, title:'Hulu', force:'windows' }) })
所有其他选项都可以在github页面上找到:https://github.com/jasny/jquery.smartbanner