1. 程式人生 > >ExtJs 獲取url中的引數,根據id獲取元素設定屬性

ExtJs 獲取url中的引數,根據id獲取元素設定屬性

ExtJs獲取Url中的某個引數,下面例子是獲取url中的name屬性值

Ext.Object.fromQueryString(window.location.href).name;

ExtJs根據id獲取元素,給元素設定屬性

id: 'student',
	
Ext.getCmp('student').name = '張三'