【第69天】小练习

1:编码实现图片的功能

微信截图_20190922144924.png
代码块
def func(arg1):
    def inner(arg2):
        print(arg1*arg2)
        return 'hello,world'
    return inner

foo=func(8)
print(foo(8))
print(foo(-1))

结果如下:
64
hello,world
-8
hello,world

2 浮层弹出框

代码块



    
    
    Title
    




3 window.onload标签加载完才执行js

image.png
代码块



    
    
    Title
    


我是div

4 计时器练习

代码块




无标题文档












你可能感兴趣的:(【第69天】小练习)