一切都好,我使用sharepoint搜索列表,我在选择的情况下看到信息,但我无法理解复制字段值,在其他情况下寻找,我代替值退出ID(1,2 ,3,4,...),有必要在“标题”字段中,在“选择”字段中选择信息的情况下复制它,为什么会这样?即如果从列表中选择用户,则应显示该字段中的用户。
这里代码:
ExecuteOrDelayUntilScriptLoaded(LoadSLNCascade, "SP.js");
function LoadSLNCascade() {
$('#countries').SLN_SPcascadingdropdown(
{
relationshipList: "List",
relationshipParentList: "List",
relationshipParentListColumn: "First",
relationshipListChildColumn: "First",
relationshipListParentColumn: "Seccond",
childDropDown: "cities",
autoFillParentDropDownList: true,
defaulFillChildDropDownList: false,
promptText: "-- Select Value --"
});
}
$('#countries').change(function() {
$('#TitleField').val($(this).val());
});
答案 0 :(得分:1)
这个答案:
$(document).ready(function() {
$("#list").change(function() {
$("#field").val($('option:selected', this).text());
});
});