我在CRM中点击字段时尝试打开文件。我得到了“拒绝访问”#39;当函数被调用时。
var FileTextBox = crmForm.all.new_testdoc;
FileTextBox.style.color = "#0000ff";
FileTextBox.style.textDecoration = "underline";
FileTextBox.attachEvent("onclick", openDocument);
function openDocument()
{
if (FileTextBox.DataValue != null)
{
window.open("FileTextBox");
}
}
crm字段中包含的数据是' c:\ test \ test.txt'
有什么想法吗?
由于
答案 0 :(得分:0)
排序。我需要将文件夹放入共享文件夹并使用它,例如。 \ server \ documentpath,并在加载时使用file://作为前缀。