【zk开发】客户端编程组件事件的this与function中的this的区别

<?xml version="1.0" encoding="utf-8"?><?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<?page id="在这里定义页面id" title="在这里输入标题" cacheable="false"  zscriptLanguage="Java" contentType="text/html;charset=UTF-8"?>
<?component name="welcome_macro"  inline="true"  macroURI="/WEB-INF/content/welcome.zul"?>
<?meta name="keywords" content="zkway,zk" name1="2332" name2="3"?>
<?xel-method prefix="c" name="forName" class="java.lang.Class"  signature="java.lang.Class forName(java.lang.String)"?>
<?init class="org.zkoss.zkplus.databind.AnnotateDataBinderInit" root="templateWin"?>
<window id="templateWin" xmlns:h="http://www.w3.org/1999/xhtml"
	xmlns:n="http://www.zkoss.org/2005/zk/native" xmlns="http://www.zkoss.org/2005/zul"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd"
	xmlns:w="http://www.zkoss.org/2005/zk/client">
	<script type="text/javascript">
		//直接函数
		function testFunctionThis(){
			zk.log("2,直接函数中的this是window对象或者函数本身的对象,是不是:"+((this==window)||(this instanceof testFunctionThis)));
			invokedFunction();
		}
		//被调函数
		function invokedFunction(){
			zk.log("3,被调函数中的this对象永远是window对象,是不是:"+((this==window)));
		}
	</script>
	<button label="组件事件中的this" w:onClick="zk.log('----------组件事件中的this----------');zk.log('1,组件事件中的this是widget本身,即当前组件widget对象,是不是:'+(this instanceof zul.wgt.Button));"></button>
	<button label="函数中的this-直接调用" w:onClick="zk.log('----------函数中的this-直接调用----------');testFunctionThis();"></button>
	<button label="函数中的this-创建对象" w:onClick="zk.log('----------函数中的this-创建对象----------');new testFunctionThis();"></button>
</window>

 

你可能感兴趣的:(JavaScript,编程,Web,C#,zk)