① python的可视化编程软件
在参考链接上可以下到windows上的安装包,根据你的Python版本选择一个。
有个IDE :Boa Construtor 可以像VC一样设计界面并自动生成代码
② js构造函数中如何调用prototype内方法
<!DOCTYPEhtml>
<html>
<head>
</head>
<body>
<scripttype="text/javascript">
varPerson=function(){
this.name="csz";
Person.prototype.say();
}
Person.prototype.say=function(){
alert("hello");
}
Person();
</script>
</body>
</html>
直接调用就行了啊,调用Person就直接调用了它原型专上的属say方法了