gpt4 book ai didi

javascript - 在VBScript中调用JS函数

转载 作者:行者123 更新时间:2023-12-02 19:53:40 24 4
gpt4 key购买 nike

您好,我正在尝试将一个 ASP 页面的文本框值获取到另一 ASP 页面并设置该值这是 VBScript,它的作用

If(disableListHeaderPR()) Then
bEnablePRField = false
Else
bEnablePRField = true
End If

这里disableListHeaderPR()是JS函数。我收到错误消息说变量未定义:“disableListHeaderPR”这是JS函数代码

function disableListHeaderPR()
{
if(dateDifference(document.getElementById("txtCommDte").value, "05/04/2012") < 0 )
{
return false;
}
else
{
return true;
}
}

最佳答案

此页面包含有关从 js 调用 vbs 的信息,反之亦然。

http://www.webdeveloper.com/forum/archive/index.php/t-49920.html

但请记住,只要您使用 VBScript,您的应用程序就无法在 IE 以外的任何浏览器中按预期运行。

关于javascript - 在VBScript中调用JS函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8943440/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com