我是 Jquery 的新手。我有类似的字符串Dear < EmployeeList >, kindly complete your joining documentation and submit the same to < DepartmentList > latest by < DateCalendar >
我想将“< EmployeeList >”替换为“ABC”。
同样的规则也适用于其他 "< >" 。整个字符串不是固定的,它可以像那样改变。
Dear < EmployeeList >, welcome to < FreeTextCompany > We wish you a long and prosperous association with us.
所以请记住字符串不是固定的,它只是一个模板。
请帮我
我正在尝试找出字符串并替换为我的字符串但能够做到这一点
var start_pos = test_str.indexOf('<') + 1;
var end_pos = test_str.indexOf('<', start_pos);
var text_to_get = test_str.substring(start_pos, end_pos)
$('#MainContent_lblSMSTemplate').text().replace(text_to_get, "");