是否有可能将输入的值从我的网站传递到互联网上的任何其他网站

问题描述 投票:1回答:1

是否有可能将输入的值从我的网站传递到互联网上的任何其他网站。我已将输入保存到本地存储。现在,我想将其传递给需要用户名的另一个网站。另一个网站具有输入ID =“ userusername”。如果网站不期望通过POST或GET方法发布值,是否可以。

<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
<body>

<script type="text/javascript">

    function passvalues(){
        var pass=document.getElementByID("name").value;
        localStorage.setItem("textvalue", pass);
        return false;
    }

</script>

<form method="POST" action="whatever website">
    <input type="name" placeholder="Name" id="name"/>
    <input type="submit" placeholder="Login" onclick="passvalues();"/>
</form>

</body>
</html>
javascript html post local-storage
1个回答
0
投票

LocalStorage仅限于指定页面的协议,因此您可以使用post方法将本地存储的数据传递到另一个网站。但是,如果您的页面协议发生变化,情况就不会如此。

© www.soinside.com 2019 - 2024. All rights reserved.