Cập nhật gần đây nhất vào
26 thg 12, 2022
|
Cũng áp dụng cho ColdFusion
Description
Decodes an HTML encoded string.
Returns
Decoded HTML string.
Category
Display and formatting functions.
Function syntax
DecodeforHTML(string)
See also
Canonicalize,EncodeForHTMLAttribute, EncodeForJavaScript, EncodeForCSS, EncodeForURL
History
ColdFusion (2018 release): Renamed parameter inputString to string.
ColdFusion 10: Added this function.
Parameters
Parameter |
Description |
---|---|
string |
Required. The encoded string to decode. |
Example
<cfif isDefined("form.submit")> <b> Output:<cfoutput >#DecodeForHTML(form.encodedUserName)#</cfoutput> </b> <cfelse> <cfset form.username=""/> </cfif> <cfform> <cfinput name="encodedUserName" type="text" value="#form.encodedUserName#"> <cfinput name="submit" type="submit" value="Submit"> </cfform>