时间:2021-05-23
返回当前区域设置 ID 值。
GetLocale()
locale 是用户参考信息集合,与用户的语言、国家和文化传统有关。locale 决定键盘布局、字母排序顺序和日期、时间、数字与货币格式。
返回值可以是任意一个 32-位 的值,如 区域设置 ID所示:
下面举例说明 GetLocale 函数的用法。要使用该代码,请复制标准HTML 文件中 <BODY>l 标志之间的所有内容。
Enter Date in UK format: <input type="text" id="UKDate" size="20"><p>Here's the US equivalent: <input type="text" id="USdate" size="20"><p><input type="button" value="Convert" id="button1"><p>Enter a price in German: <input type="text" id="GermanNumber" size="20"><p>Here's the UK equivalent: <input type="text" id="USNumber" size="20"><p><input type="button" value="Convert" id="button2"><p><script language="vbscript">Dim currentLocale' Get the current localecurrentLocale = GetLocaleSub Button1_onclick Dim original original = SetLocale("en-gb") mydate = CDate(UKDate.value) ' IE always sets the locale to US English so use the ' currentLocale variable to set the locale to US English original = SetLocale(currentLocale) USDate.value = FormatDateTime(mydate,vbShortDate)End SubSub button2_onclick Dim original original = SetLocale("de") myvalue = CCur(GermanNumber.value) original = SetLocale("en-gb") USNumber.value = FormatCurrency(myvalue)End Sub</script>声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
vb中inputbox是VisualBasic和VBS中的函数。该函数与MsgBox函数类似,区别就是InputBox函数用于简单地接受用户输入的一些文本。
javascript函数已经有了,有没有Asp的函数???或者有没有高手可以把下面的写成asp的,万分感谢~!!复制代码代码如下:asp不等于vbs,只是个框架
VBS正则表达式函数主要用在asp中效果明显1、表单验证功能复制代码代码如下:FunctionValidate(strng,patrn)DimregExSetr
CreateObject和WScript.CreateObject的区别一:CreateObject是VBS的内置函数,属于语言的一部分;而WScript.Cr
Kotlin基础教程之函数定义与变量声明可以看到,函数定义就是{函数体}单语句函数可以简写,比如add函数和add1函数效果是一样的变量定义var:=常量定义v