1

在一个空的 HTML 页面中,我尝试显示一个包含我的应用程序链接的横幅

我用这个作为教程: http ://www.dunnsolutions.com/content/application-development-blog/-/blogs/smart-app-banners-for-ios-and-android

目前,我只是尝试让它在本地工作,在一个空白页面中。这是我的页面:

<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 文件位于同一个文件夹中。路径没有问题。

有谁知道为什么这段代码不起作用?提前致谢!

4

1 回答 1

3

默认选项是仅在 Android 或 iOS 设备上显示该栏。如果您在桌面上打开该页面,则不会出现任何内容。您可以将“force”选项设置为“windows”,以使其出现在您的桌​​面上。

$(function () { $.smartbanner({ daysHidden: 0, daysReminder: 0, title:'Hulu', force:'windows' }) })

All of the other options can be found on the github page: https://github.com/jasny/jquery.smartbanner

于 2014-09-04T18:55:04.657 回答