作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道如何使用 Window open() 方法将文本区域的内容发送到新窗口中。
这是我的小代码:
HTML
<textarea name="textcode"></textarea>
<button type="submit" onclick="myFunction()">Open in New window</button>
Javascript
function myFunction() {
window.open("insert the new window path here");
}
最佳答案
使用jquery使用下面的代码。
HTML
<textarea name="textcode" id="text"></textarea>
<button type="button" id="openwindow">Open in New window</button>
jquery
$(document).ready(function(){
$('#openwindow').click(function(){
var value = $('#text').val();
window.open('https://www.google.co.in/?#q='+value);
});
});
您可以将值作为 params.include 路径和参数传递。您将在查询字符串中获取文本区域的值。使用 PHP $_GET['param'] 您将在新窗口中打印数据。
使用纯 JavaScriptHTML
<textarea name="textcode" id="text"></textarea>
<button type="button" onclick="myFunction();">Open in New window</button>
JavaScript
function myFunction(){
var value = document.getElementById("text").value;
window.open('https://www.google.co.in/?#q='+value);
}
关于javascript - 如何将文本区域的内容发送到新窗口中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28250094/
我是一名优秀的程序员,十分优秀!