我想知道是否可以将javascript注入到带有一些文本的href标签中。现在我知道你可以这样做:
<a href="javascript:alert(1)">
现在,如果 href 值已经有一些文本,例如:
<a href="Hello welcome to xxxx site">
在引号内如何注入一些javascript?像这样的东西:
<a href="Hello welcome to xxxx site javascript:alert(2)">
我知道我可以开始另一部分,onmouseover="alert(1)"
但我想知道在这种情况下是否可以在 href 标记中这样做。