摘要:
four approachs can cross domain in javascript1.jsonp2.document.domain(only in frame and they have one same parent domain)3.window.name4.window.postMes... 阅读全文
摘要:
some sections in xml are always repeated,I received these file by wcf.I thought it's caused by buffersize of wcf or flush methodof stream.(I don't wha... 阅读全文
摘要:
$.fn.extend({ //此方法解决了ie中jquery不识别非xml的类型的xml字符串的问题 tony tan findX: function (name) { ... 阅读全文
摘要:
常见的共有5个page函数,刚开始有点迷糊的是到底谁先谁后执行。实验告诉我们结果: var temp = ''; $('body').live('pagechange', function () { temp += 'pagechange,\n'; console.log (tem... 阅读全文
摘要:
当禁用了jqueryMobile的ajax后,初始化函数如pageinit和pageshow等函数,都会执行两次。document.ready函数也会执行两次。当然我们可以用一个变量记录是否已经执行,如果已经执行就不再执行第二次,但终究这不是最终办法。 var loaded = false;/... 阅读全文
摘要:
主要区别是:dialog默认含回退按钮。并且dialog在1.4版中已经过时,1.5中将会移除。下面是原文1:Using a Dialog Window as a PopupA jQuery Mobile dialog window can also be used as popup window.... 阅读全文
摘要:
jq解释属性选择器时有以下四种:上面都是带某属性或者属性为某值的情况,还有一种情况是不带某属性怎么办?答案是同属性不为某值。如通过$('a[b!=]')可以找到第二个a标签。 阅读全文
摘要:
jqm只有通过ajax加载的页面才只执行一次ready(正常情况)页面刷新(同非ajax加载的页面)都会执行两次ready,包括pageinit和pageshow事件也是如此。两种避免的方法是:1、不要用ajax加载 如2、在ready函数外定义全局变量,记录是否已经初始化。出现加载两次的原因:使用... 阅读全文