var columnName = 'Display Name';
var userName = 'domain\\name';
var searchText = RegExp("FieldName=\"" + columnName + "\"", "gi");
$("td .ms-formbody").each(function() {
if(searchText.test($(this).html())) {
alert(userName);
$(this).find("div[Title='xinix']").html(userName);
}
});
相关文章
- mybatis-plus插入数据时,关于id没有赋值,系统自动赋值,并报错Could not set property ‘id‘ of ‘***‘ with value
- Web app root system property already set to different value 错误原因及解决
- 报错 | pandas报A value is trying to be set on a copy of a slice from a DataFrame的解决
- @Value注解注入List、Set、Map数据结构
- Vue.set( target, key, value ) 设置数组元素/向响应式对象添加属性
- DataFrame添加列时,警告A value is trying to be set on a copy of a slice from a DataFrame.
- pandas 屏蔽 SettingWithCopyWarning A value is trying to be set on a copy of a slice from a DataFrame
- 真实世界中的开集识别问题(Open-Set Recognition Problem)——Walter J. Scheirer研究是最深的,安全里已经有研究了,但是感觉只是触及了皮毛而已 极值理论(Extreme Value Theory)
- Could not create and/or set value back on to object .
- webpack4打包报错:WARNING in configuration The 'mode' option has not been set, webpack will fallback to 'production' for this value. Set 'mode' option to 'development' or 'production' to enable defaults fo