是否可以在servicenow中更改OnLoad上的字段值字體樣式?我能夠使用下面的代碼更改字段標籤樣式。如何在ServiceNow中更改字段值字體樣式?
// Custom field label colors
var stateLabel = g_form.getLabel('short_description');
stateLabel.style.color= 'red';
stateLabel.style.fontWeight='bold';
我試圖以類似的方式更改字段值字體樣式,但沒有運氣。
var stateValue = g_form.getValue('short_description');
stateValue.style.color= 'red';
stateValue.style.fontWeight='bold';
上面的代碼沒有做任何好處,任何想法讓這個工作?
在此先感謝
謝謝我測試JS的方式和它的工作,我現在要研究字段樣式,感謝所有的建議:) – Nish 2014-12-04 18:59:31