1.消息框 tkMessageBox.py import tkinter from tkinter import messagebox def cmd(): global n global buttontext n += 1 if n==1: messagebox.askokcancel('Python Tkinter', 'askokcancel') buttontext.set('askquestion') elif n==2: messagebox.askquestion('Python…
If...Else 语句 JavaScript中if...else语句和Java中的语法和使用方法是一样的. 只是在JavaScript中要使用小写字母.使用大写的 IF 会出错! 至于if...else...else if...和Java中的都是一样的. 例: var d = new Date() var time = d.getHours() if (time<10) { document.write("<b>Good morning</b>")…