The value of the custom browse box in the detailed list of the oa process form

// Get the value of the custom browse box in the schedule

<script>
	jQuery(document).ready(function() {
		var indexNum = jQuery("#indexnum0");//获取第一个明细表
		var yskm=  '#field18188';//明细表中的字段
		indexNum.bindPropertyChange(function() {//明细表事件
			var index = indexNum.val() - 1;
  			if (index < 0) return;//判断明细表数,如果小于1,则返回
			jQuery(yskm + "_" + index).bindPropertyChange(function(){//自定义浏览框改变事件
				alert(jQuery(yskm + "_" + index).val());	//弹出自定义浏览框值
			})
	    })
	})
</script>

Panmicro oa ecology8.0 is applicable, other versions are not known for the time being! If necessary, please contact WeChat: hdyi1997 At the same time, please explain your intention and make progress together! ! !

Guess you like

Origin blog.csdn.net/Y_6155/article/details/105667600