简体   繁体   中英

Website link loading about:blank page

<td><a href="http://#trim(website)#" target="_blank">                                    
<cfoutput>#trim(details.webURL)#</cfoutput></a></td>

When clicking on the above link on the UI it just loads an about:blank web page.

The website themselves are stored in the db such as www.example.com

Any ideas?

Are you ready for it?

<cfoutput>
    <a href="http://#trim(website)#" target="_blank">                                    
    #trim(details.webURL)#
</cfoutput>

You had a variable that isn't wrapped in a cfoutput . You are opening a blank link.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM