使用ajax在jqtouch中调用页面,现在想运行javascript?
就像在 kitchensink 演示中一样,我使用 jqtouch 从索引页面调用外部 .html 页面,并且工作正常。外部 .html 页面上有视频,我正在使用 submlime 播放器来运行它。整个事情非常普通 - 但我需要能够在新的 .html 页面中运行 javascript 来运行视频。
因此,在我的索引页面上,使用 ajax 拉入新页面的代码:
<li class="arrow"><a href="videopage.html">play the video</a><small class="counter">2</small></li></li>
在 videopage.html 上,我有:
<script type="text/javascript" src="http://cdn.sublimevideo.net/js/pagbioaz.js"></script>
我将使用大量视频 - 是否可以在始终处理它之前运行某些内容?或者我可以在索引页上做什么来让它继续下去?
谢谢!
Just like in the kitchensink demo, I'm calling outside .html pages in from the index page using jqtouch, and that's working fine. There's video on the outside .html page, and I'm using submlime player to run it. The whole thing is very vanilla - but I need to be able to run the javascript inside that new .html page to run the video.
So on my index page, the code that uses ajax to pull in the new page:
<li class="arrow"><a href="videopage.html">play the video</a><small class="counter">2</small></li></li>
And on the videopage.html, I have:
<script type="text/javascript" src="http://cdn.sublimevideo.net/js/pagbioaz.js"></script>
I'll be using lots of videos - is it possible to run something before that just takes care of it always? Or what can I do on the index page to make it go?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您可以将 pagbioaz.js 链接放在 index.html 中,并使用 jqt 的 $(document.body).bind('pageInserted'... ) 来触发您需要运行的任何代码。
I think you can put the pagbioaz.js link in index.html and use jqt's $(document.body).bind('pageInserted'... ) to fire whatever code you need to run.