APPLICATIONNAME Attribute | applicationName参数属性
| DHTML文档教程 |
Sets or retrieves the name of the HTML Application (HTA).
dhtml语法
HTML | <HTA:APPLICATION APPLICATIONNAME
= sAppName... >
|
---|
Scripting | [ sAppName = ] HTA:APPLICATION.applicationName |
---|
DHTML可能的值
sAppName | Stringthat specifies the application name. |
The property is read-only.
The property has no default value.
Remarks
Note The applicationName property is read-only; however, the APPLICATIONNAME attribute can be used to set the initial value.
When set to true, the singleinstance property checks the applicationname value before launching an instance of the application. for this check to be valid, the applicationname property must have a unique value assigned to it. you can use the applicationname property to identify a single application, regardless of the url used to access it.
DHTML代码范例
This example shows how to retrieve the applicationName property.
<HTML>
<HEAD>
<HTA:APPLICATION ID="oHTA"
APPLICATIONNAME="myApp"
>
<SCRIPT>
alert("applicationName = " + oHTA.applicationName);
</SCRIPT>
</HEAD>
<BODY SCROLL="no">
</BODY>
</HTML>
This feature requires Microsoft® Internet Explorer 5 or later. Click the following icon to install the latest version. Then reload this page to view the sample.
是否符合公共标准
There is no public standard that applies to this property.
Applies To
更多语法参考
Introduction to HTML Applications (HTAs)