摘要:
Python 变量类型Python是有变量类型的,而且会强制检查变量类型。内置的变量类型有如下几种:#整型integer_number = 90#浮点float_number = 90.4#复数complex_number = 10 + 10j#list 序列sample_list = [1,2,3,'abc']#dictionary 字典sample_dic = {"key":value, 2:3}#tuple 只读的序列sample_tuple = (1,3,"ab")#嵌套sample_nest = [(1,2,3),{1:2,3: 阅读全文
摘要:
动态创建的元素需要使用live函数绑定事件。在一个DIV里面用jquery的append添加了一些元素,元素书写正确。用firebug也能正常显示追加的元素。但不管是$(document).ready();还是用鼠标点击事件根本就无法使用元素。晕死,jquery居然提供了一个live()的解决方法。$("input[name='insert']").live("click",function () { alert($(this).parent().html()); var familyName = $(this).parent().sib 阅读全文
摘要:
(1):转换成 2011-3-16 16:50:43 格式:functiongetDate(tm){vartt=newDate(parseInt(tm)*1000).toLocaleString().replace(/年|月/g,"-").replace(/日/g,"")returntt;}(2):转换成 2011年3月16日 16:50:43:functiongetDate(tm){vartt=newDate(parseInt(tm)*1000).toLocaleString()returntt;}(3):转换成 2011年3月16日 16:50fun 阅读全文