博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquerymobile changepage 无法加载外部js文件解决办法
阅读量:6156 次
发布时间:2019-06-21

本文共 1121 字,大约阅读时间需要 3 分钟。

"

jQuery Mobile does not pull the whole page into the dom, it grabs the first data-role="page"element and its descendants and pulls that into the current dom.

So any scripts in the <head> of the document will not be included.

I generally put all the functional JavaScript for my site on the index page and then when external pages are loaded into the dom they can benefit from the already loaded scripts.

Also, you can place JavaScript code inside the data-role="page" element and it will be included when jQuery Mobile does its AJAX load of the page.

UPDATE

A good system for this is to put all of your JS into an include file and include it on each page of the site. It will be ignored if pages are brought into the DOM by AJAX, but if someone refreshes somewhere in your site, the JS will be available.

"

基本思想就是把<script src="***.js"></script>,放到body标签里,jquery.mobile.changepage()在加载页面的时候,就会把外部文件加载近来

用location.href = "***.html",可以加载外部js文件

原文链接:http://stackoverflow.com/questions/7449402/jquery-mobile-mobile-changepage-not-loading-external-js-files

转载于:https://www.cnblogs.com/xuedong09/archive/2013/02/01/2889148.html

你可能感兴趣的文章
Spring对JNDI的支持方法
查看>>
[C#]Attribute特性(2)——方法的特性及特性参数
查看>>
nagios监控单网卡双IP
查看>>
ExtJs之Ext.view.View
查看>>
YII中session和cookie
查看>>
python搭建服务器
查看>>
TCP三次握手及其背后的缺陷
查看>>
zookeeker如何解决HBase单节点故障
查看>>
E-MapReduce结合DataV进行数据展现
查看>>
Cocos2D v2.0至v3.x简洁转换指南(一)
查看>>
HTTP状态码集
查看>>
安装Ubuntu时分区选择
查看>>
性能优化之数据库优化
查看>>
关于NSKeyedArchiver的编码格式
查看>>
Xcode自定义字体不能应用的原因
查看>>
hibernate总结-N+1问题
查看>>
iOS技术周报-第28期
查看>>
iOS常用于显示几小时前/几天前/几月前/几年前的代码片段
查看>>
SLS:海量日志数据管理利器
查看>>
cocos2dxFlappyBird开发总结二:开发环境介绍
查看>>