上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 21 下一页
摘要: 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... 阅读全文
posted @ 2014-09-02 10:11 二师弟tl 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 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... 阅读全文
posted @ 2014-09-01 14:05 二师弟tl 阅读(149) 评论(0) 推荐(0) 编辑
摘要: $.fn.extend({ //此方法解决了ie中jquery不识别非xml的类型的xml字符串的问题 tony tan findX: function (name) { ... 阅读全文
posted @ 2014-08-29 13:55 二师弟tl 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 常见的共有5个page函数,刚开始有点迷糊的是到底谁先谁后执行。实验告诉我们结果: var temp = ''; $('body').live('pagechange', function () { temp += 'pagechange,\n'; console.log (tem... 阅读全文
posted @ 2014-08-15 16:00 二师弟tl 阅读(3518) 评论(0) 推荐(0) 编辑
摘要: 当禁用了jqueryMobile的ajax后,初始化函数如pageinit和pageshow等函数,都会执行两次。document.ready函数也会执行两次。当然我们可以用一个变量记录是否已经执行,如果已经执行就不再执行第二次,但终究这不是最终办法。 var loaded = false;/... 阅读全文
posted @ 2014-08-15 15:28 二师弟tl 阅读(4031) 评论(0) 推荐(0) 编辑
摘要: 主要区别是: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.... 阅读全文
posted @ 2014-08-15 15:06 二师弟tl 阅读(752) 评论(0) 推荐(0) 编辑
摘要: jq解释属性选择器时有以下四种:上面都是带某属性或者属性为某值的情况,还有一种情况是不带某属性怎么办?答案是同属性不为某值。如通过$('a[b!=]')可以找到第二个a标签。 阅读全文
posted @ 2014-08-06 13:54 二师弟tl 阅读(1536) 评论(1) 推荐(0) 编辑
摘要: jqm只有通过ajax加载的页面才只执行一次ready(正常情况)页面刷新(同非ajax加载的页面)都会执行两次ready,包括pageinit和pageshow事件也是如此。两种避免的方法是:1、不要用ajax加载 如2、在ready函数外定义全局变量,记录是否已经初始化。出现加载两次的原因:使用... 阅读全文
posted @ 2014-08-06 11:32 二师弟tl 阅读(405) 评论(0) 推荐(0) 编辑
摘要: 虽然关于null的一切争论永不停息,但根据实际开发经历,很多时候需要判断无聊的null,并且有些的判断是可有可无的,尤其是在表现层。 string e = null; if (e != null) { Console.WriteLine(e.ToString()); }上述代码如果能换成这样... 阅读全文
posted @ 2014-08-05 14:52 二师弟tl 阅读(292) 评论(0) 推荐(0) 编辑
摘要: text-overflow:ellipsis;white-space:nowrap;overflow:hidden;不换行,一行显示溢出时,文本自动换行。以前都是js计算的,现在可好。ellipsis:省略号 阅读全文
posted @ 2014-08-05 09:08 二师弟tl 阅读(7340) 评论(1) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 21 下一页