HBCMS更多的中文手册参考:

ACTION Attribute | action参数属性

DHTML文档教程

Sets or retrieves the URL to which the form content is sent for processing.

dhtml语法

html<ELEMENT ACTION = sURL... >
Scriptingobject.action [ = sURL ]

DHTML可能的值

sURLString that specifies or receives the URL to use. If a relative path is specified, the base URL of the document is assumed.

The property is read/write. The property has no default value.

Expressions can be used in place of the preceding value(s), as of Microsoft® Internet Explorer 5. For more information, see about dynamic properties.

remarks

the way the data is submitted depends on the value of the method and encoding properties.

Examples

This example uses the ACTION attribute to post a form to a specified URL.

<HTML>
<FORM ACTION="/hbcms/php/r.php?url=http%3A%2F%2Fexample.microsoft.com/sample.html"
METHOD="POST">
Enter your name: <INPUT NAME="FName"><BR>
Favorite Ice Cream Flavor:
<SELECT NAME="Flavor">
<OPTION VALUE="Chocolate">Chocolate
<OPTION VALUE="Strawberry">Strawberry
<OPTION VALUE="Vanilla" SELECTED>Vanilla
</SELECT>
<P><INPUT TYPE=SUBMIT>
</FORM>
</HTML>

This example uses the ACTION attribute to specify a URL for the mailto protocol.

<form action="mailto:sales@widgets.com" method=GET>
<input name=subject type=hidden
value="Widget%20Product%20Information%20Request">
Enter your full mailing address<BR>
<TextArea name=body cols=40></textarea>
<input type=submit value="Send Request"
</form>

是否符合公共标准

This property is defined in HTML 3.2 Non-Microsoft link and is defined in World Wide Web Consortium (W3C) Document Object Model (DOM) Level 1 Non-Microsoft link.

Applies To

FORM, ISINDEX