0

I have two text fields on different pages. One text field with the id ais on page 1 and second text field with the id b is on page 2. I want to know how can I get data from 1st text field and put it into 2nd text field with jQuery.

4

1 回答 1

1

导航时,您需要将值从一页转移到另一页。您可以通过 url 参数执行此操作,并且可以通过 URL 访问它们。

这是一个示例:第 1 页 HTML:

<a id="link" href="#">Link</a>
<input type="text" id="a" value="some value" />

第 1 页 JS:

$('#link').click(function (event) {
    $(this).attr('href', 'page2.html?text=' + $('#a').val());
});

第 2 页: 有关如何提取 URL 参数的信息,请参阅这篇文章。

于 2012-10-08T06:55:21.113 回答