ボタン投稿フォームをハイパーリンク投稿フォームに変更したら、直接ログインできなくなりました。 !ボタンの送信は機能しますが、ハイパーリンクは機能しません。アドバイスをお願いします。 ! ! ! ! ! !
ボタン送信フォームをハイパーリンク送信フォームに変更すると、直接ログインできなくなります。 !ボタンの送信は機能しますが、ハイパーリンクは機能しません。アドバイスをお願いします。 ! ! ! ! ! !
これはハイパーリンクによって送信されたコードです
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>无标题文档</title> </head> <body> <script LANGUAGE = "JavaScript" > function checkvalue() { if(document.getElementsByName("username")[0].value == "") { alert('not null'); return; } if(document.getElementsByName("password")[0].value == "") { alert('not null'); return; } document.form3.action="http://192.168.10.221:8038/index.php?mod=login&code=dologin"; document.form3.submit(); alert('已提交'); return true; } </script> <form name="form3" method="post" action=""> <input type="hidden" name="FORMHASH" value="f4a9926138c3ac87"> <p>账号:<input name="username" value="123456" type="text" id="username" maxlength="30"> </p> <p>密码:<input name="password" value="123456" type="text" id="password"> </p> </form> <li class="app_weibo"><a href="javascript:void(0)" onClick="javascript:return checkvalue();">微博</a></li> </body> </html>
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <form id="form3" method="post" action="http://192.168.10.221:8038/index.php?mod=login&code=dologin"> <input type="hidden" name="FORMHASH" value="f4a9926138c3ac87"> <p>账号:<input name="username" value="123456" type="text" id="username" maxlength="30"> </p> <p>密码:<input name="password" value="123456" type="text" id="password"> </p> <input name="提交" type="submit" value="微博"> </form>