タグ付けされた質問 「javascript」

1
デフォルトのGNOME-Webbrowserを介したWebページへの自動ログイン
RaspbianのデフォルトのWebブラウザーでこのようなHTMLページを呼び出そうとすると、デフォルトのログインページに移動します。 デスクトップのMidoriでも同様です。 デスクトップでFirefoxまたはGoogle Chromeを使用してまったく同じページを呼び出すと、正常に機能します。 そもそも、私は持っていました: <body onLoad="doLogin()"> これはまったく同じ動作でしたが、FirefoxとChromeで動作しました。raspbianの組み込みブラウザでこれを行う方法はありますか? <!DOCTYPE HTML> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <script> <!-- function doLogin() { document.form1.action="https://ip/sub/main.html?page=map_info&id=177"; document.form1.submit(); } //--> </script> </head> <body > <form name="form1" id=form1 method="post"> <input type="hidden" name="process" value="login"> <input type="hidden" name="page" value="start"> <input type="text" name="user" value="User"> <input type="password" name="password" value="Pass"> </form> …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.