使用 DOM 在 HTML 文件和链接的 .js 文件之间传递信息。

发布于 2024-11-27 05:46:07 字数 721 浏览 0 评论 0原文

有人可以告诉我或演示如何将信息从 HTML 页面传递到链接的 .js 文件吗?

<head>
<script type="text/javascript" src="../javascripts/script.js"></script>
</head>

<form name="form1">
    <input type="text" name="input1" value autofocus="on">
    <button onClick= "chrome.tabs.create({url: getURL()});">Go</button>
</form>

这是我想要完成的表单的一部分,所采用的输入值与预先存在的 URL 相结合,以及在新选项卡中打开的最终结果

function getURL()
{
    var site = "http://www.example.com/query?f=";
    var input = document.form1.input1.value
    var output = site + input;
    return output;
}

这是我将要使用的功能,但我不能弄清楚或还不知道如何将输入变量链接到 input1 表单值。 .js 文件是链接的,而不是在实际的 HTML 文件内。

帮助?

Can someone tell me or show me how to pass information from a HTML page to a linked .js file?

<head>
<script type="text/javascript" src="../javascripts/script.js"></script>
</head>

<form name="form1">
    <input type="text" name="input1" value autofocus="on">
    <button onClick= "chrome.tabs.create({url: getURL()});">Go</button>
</form>

This is part of a form I want to be completed, and the input value taken, combined with a pre-existing URL, and the end result opened in a new tab

function getURL()
{
    var site = "http://www.example.com/query?f=";
    var input = document.form1.input1.value
    var output = site + input;
    return output;
}

This is the function I'll be using, but I can't work out or don't know yet how to link the input variable to the input1 form value. The .js file is linked, rather than inside the actual HTML file.

Help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ぃ双果 2024-12-04 05:46:07

元素的 ID 或名称自动映射到 document 下按层次结构组织的属性(如 document.name1.name2),这是一种长期弃用的做法,除非出现这种情况,否则不会发生您的文档会触发怪异模式。将 ID 添加到输入元素,然后使用

var input = document.getElementById('input_id_goes_here').value;

Elements with their IDs or names automatically mapped to hierarchically-organised properties under document, as in document.name1.name2, is a long-deprecated practice and doesn't occur unless your document triggers quirks mode. Add an ID to the input element then use

var input = document.getElementById('input_id_goes_here').value;

instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文