我有一个像这样的字符串,
$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>';
显示但是锚点链接不起作用。任何人都可以帮助我。谢谢。
答案 0 :(得分:4)
Anchor支持href
属性而不是src
,它与Angular无关。另外,请确保网址包含http
或https
提及的协议。
<a href="http://www.test/data">#data</a> time <a href="http://www.test/city">#city</a>