我正在连接到组件字段上的自定义URL,该字段包含以下代码
function SaveAndClose()
{
var newValue = new Array();
newValue[0] = "/feed.ashx?type="+ $("#Type").val() + "&user="+ $("#User").val();
window.returnValue = newValue;
self.close();
}
document.write("Current Value:");
document.write(window.dialogArguments.fieldValue);
SaveAndClose函数完美无缺,并将值发送回组件,但window.dialogArguments.fieldValue始终返回undefined。
答案 0 :(得分:4)
您需要阅读dialogArguments:
上的customArguments
属性
document.write(window.dialogArguments.customArguments.fieldValue);