在将属性传递给另一个页面时如何重定向到另一个页面?

时间:2018-07-12 08:52:10

标签: javascript

这是写在当前页面上的代码,我必须将属性从该页面传递到另一页面:

<script>
    $(document).ready(function() {
        $("buttons").click(function() {
            $(location).attr('href', 'www.google.co.in');
         });
    });
</script>

2 个答案:

答案 0 :(得分:0)

您可以像这样使用查询字符串( https://en.wikipedia.org/wiki/Query_string ):

http://example.com/path/to/page?firstParameter=data1&secondParameter=data2

答案 1 :(得分:0)

这个问题是重复的(我相信)。查看此链接。它清楚地突出显示了如何将值从一页传递到另一页。 How to redirect on another page and pass parameter in url from table?