使用ajax在jqtouch中调用页面,现在想运行javascript?

发布于 2024-10-15 14:35:39 字数 612 浏览 3 评论 0原文

就像在 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>

在 vi​​deopage.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烧了回忆取暖 2024-10-22 14:35:39

我认为您可以将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文