您可以通过向 UIViewRoot 组件添加属性来做到这一点:
<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="http://www.ibm.com/xsp/core">
<xp:this.attrs>
<!-- if browser is IE 7 or smaller -->
<xp:attr name="class" value="no-js lt-ie9 lt-ie8 lt-ie7"
rendered="#{javascript:context.getUserAgent().isIE(0,7)}">
</xp:attr>
<!-- if browser is NOT IE 7 or smaller -->
<xp:attr name="class" value="no-js lt-ie9 lt-ie8 lt-ie7"
rendered="#{javascript:!(context.getUserAgent().isIE(0,7))}">
</xp:attr>
</xp:this.attrs>
</xp:view>
lang属性由 XPage 的当前语言设置计算得出。要在应用程序/服务器范围内执行此操作,您必须将其添加到主题中。
编辑:
主题必须如下所示:
<control>
<name>ViewRoot</name>
<property>
<name>attrs</name>
<complex type="xp_attr">
<property>
<name>name</name>
<value>class</value>
</property>
<property>
<name>value</name>
<value>#{javascript:
if (context.getUserAgent().isIE(0,6)) {
return 'no-js lt-ie9 lt-ie8 lt-ie7';
}
if (context.getUserAgent().isIE(7,7)) {
return 'no-js lt-ie9 lt-ie8';
}
if (context.getUserAgent().isIE(8,8)) {
return 'no-js lt-ie9';
}
return '';
}</value>
</property>
</complex>
</property>
</control>
需要空返回,否则主题会失败。