锚标签不起作用

时间:2017-08-11 11:44:41

标签: javascript html angular2-template

我有一个像这样的字符串,

$wshell = New-Object -ComObject wscript.shell;
$wshell.AppActivate('putty')
Sleep 1
Add-Type -AssemblyName System.Windows.Forms
[System.Windows.Forms.SendKeys]::SendWait($token);

add-type -AssemblyName microsoft.VisualBasic
add-type -AssemblyName System.Windows.Forms
[Microsoft.VisualBasic.Interaction]::AppActivate("putty")
[System.Windows.Forms.SendKeys]::SendWait($token)

Select-Window putty | Send-Keys $token
Select-Window putty | Send-Keys "{ENTER}"

我正在使用

var str = '<a src="www.test/data">#data</a> time <a src="www.test/city">#city</a>';

显示但是锚点链接不起作用。任何人都可以帮助我。谢谢。

1 个答案:

答案 0 :(得分:4)

Anchor支持href属性而不是src,它与Angular无关。另外,请确保网址包含httphttps提及的协议。

<a href="http://www.test/data">#data</a> time <a href="http://www.test/city">#city</a>