跟小D每日学口语
摘要: Excellent. The 4guysfromrolla example is very helpful, thanks. I've pasted a complete javascript.js file below which allows one to create a dictionary to make calls like the following:var userDict = new Dictionary();userDict.Add("smith", "admin");userDict.Add("jones" 阅读全文
posted @ 2013-07-13 12:12 Danny Chen 阅读(982) 评论(0) 推荐(0) 编辑
摘要: :hidden匹配所有的不可见元素,input 元素的 type 属性为 "hidden" 的话也会被匹配到Matches all elements that are hidden, or input elements of type "hidden".返回值Array示例查找所有不可见的 tr 元素HTML 代码:Value 1Value 2jQuery代码:$("tr:hidden")结果:[ Value 1 ]------------------------------------------------------------ 阅读全文
posted @ 2013-07-13 11:38 Danny Chen 阅读(1119) 评论(0) 推荐(0) 编辑