所以我试图在我的 jQuery Mobile 网站上使用 TFL 小部件,但是它很小。我尝试通过 CSS 设置高度和宽度,但它不起作用,我希望它覆盖整个页面。我也试过在 TFL 网站上使用这两个版本,一个是固定宽度的,一个是可变宽度的,但它们都没有正常工作。
对此的任何帮助将不胜感激。
非常感谢。
抱歉,格式有点乱。这是我的代码:
<html>
<head>
<title></title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"> </script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>Page Title</h1>
</div>
<div data-role="content">
<div class="tflwidget">
<script language="JavaScript" src="http://www.tfl.gov.uk/tfl/syndication/widgets/serviceboard/embeddable/serviceboard-iframe-stretchy.js"></script></div>
</div>
<div data-role="footer" style="position:absolute; bottom: 0; left:0; right:0">
<h4>Footer</h4>
</div>
</div>
</body>
</html>