不起作用?-6ren"> 不起作用?-href标签可以包含JavaScript协议(protocol)的“链接”。例如: Click 单击链接将运行 href 标记值中指定的 JavaScript 代码。 我们也可以通过直接在浏览器的 U-6ren">
gpt4 book ai didi

javascript - 为什么 不起作用?

转载 作者:行者123 更新时间:2023-11-28 11:04:38 26 4
gpt4 key购买 nike

最佳答案

您的假设在这里不正确。

要打开写有 asd 的文档,您应该打开一个新窗口并在其中写入请求文本“asd”。就像:

winHandler = window.open("_blank","","");     //Opens a new blank window and is handled by winHandler
winHandler.document.write("asd"); //Writes some text to window opened.

所以现在你可以重写你的代码:

  1. 函数并调用它。 [推荐]

  2. 将两个 Stmt 串联起来。

另一个建议是 href 需要其他人建议的一些 url,因此使用 JavaScript 事件处理程序 onclick 来调用或触发该函数。例如:

<script>
function openWin(){
winHandler = window.open("_blank","",""); //Opens a new blank window and is handled by winHandler
winHandler.document.write("asd"); //Writes some text to window opened.
}
</script>
<a href='#' onclick="openWin()">a</a>

关于javascript - 为什么 <a href ='javascript:"text";'> 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7265515/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com