JavaScript基础学习与实例

本篇将结合实例来介绍JavaScript基础。 具体会讲到的实例有以下: 利用Javascrip让窗口弹出消息框,关闭窗口,获得id为**的的对象,更改文字,更改样式,隐藏文字,显示文字,定义”改变颜色”的函数,定义”改变宽高”的函数,定义”隐藏内容”的函数,定义”显示内容”的函数以及定义”取消设置”的函数 //弹出消息框function test(){ var proMessage = prompt(“Please enter your name.”); if (proMessage != null){ alert(“Welcome “+proMessage+”!”); }else{ alert(“Hello My friend!”); }}//关闭窗口function close(){ window.close();}//获得id为**的的对象function…

PHP基础之数组合并(array_merge())

数组合并(array_merge())应用于合并两个或两个以上的数组。 数组合并一共涉及到两类合并。 1. 当键名(key)不同时 2. 当键名(key)相同时 第一种情况,我们通常直接使用array_merge(). 首先创建一个config.php文件 <?phpreturn array(‘DB_NAME’=>’DATABASE’,‘DB_HOST’=>’LOCALHOST’,‘USERNAME’=>’admin’,‘address’=>’NYC’?> 在你需要合并上面数组的merge.php文件中,定义config.php为一个变量a,定义另外的数组为变量b <?php$a =  include ‘config.php’;$b = array(‘port’=>’3306’,‘address’=>’901itcom’);return array_merge($a,$b);?> 在方法中,只需要包含merge.php文件,既可以输出config.php和merge.php <?phpclass newAction {protected $c;function __construct(){$this->c =…

PHP基础之常量(Constant)

常量 (constant): 唯一的值 命名方式多为大写 数据类型可以为int, float, boolean   举例: define(‘DBNAME’, ‘901itcom’); define(‘DBNAME’, ‘901it’); echo DBNAME; OUTPUT: 报错 define(‘DBNAME’, ‘901itcom’); echo DBNAME; OUTPUT: 901itcom define (‘DB’, ‘901itcom’);…

PHP基础之变量(Variable)

变量(Variable): 变量必须已字母或者下划线开始 但是变量可以包含数字,字母和下划线 变量是区分大小写的 $webname = “www.901it.com.“; $Webname = 123456; $webName = “901it.com”; 同样的变量名是可以override之前的变量 举例: $var = “901itcom”; If (empty($var)){ echo “There is no variable.”…