gpt4 book ai didi

Javascript - 在新窗口中的 toUpperCase

转载 作者:行者123 更新时间:2023-11-28 12:53:51 24 4
gpt4 key购买 nike

这就是我想要的代码。当您写入任何单词时,它会使用 onkeyup 自动更改为大写。此外,当用户单击新窗口时,大写字母将显示在新窗口中。我只能做第一部分。我该怎么做呢? https://jsfiddle.net/p3zea7Lu/11/

<body>
<div>
<form>
<br /><br /> Type in your text: <br />
<p>
<input type="text" size="30" id="input" onkeyup="convertToUppercase()" />
</p>
<p id="output"></p>
</form>

<br />
<button onclick="myFunction()">Open new window</button>

</div>
<script>
function convertToUppercase() {
document.getElementById('output').innerHTML = document.getElementById('input').value.toUpperCase();
}

function myFunction() {
var myWindow = window.open("", "MsgWindow", "width=200,height=100");
myWindow.document.write("The word is:" + input);
}
</script>
</body>

最佳答案

将您的myFunction更改为以下内容。

function myFunction(val) {
var myWindow = window.open("", "MsgWindow", "width=200,height=100");
myWindow.document.write("The word is:" + document.getElementById('output').innerHTML);
}

关于Javascript - 在新窗口中的 toUpperCase,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57783791/

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