请教在html中嵌套javascript的问题
提示: 作者被禁止或删除 内容自动屏蔽
<body> <form id="form1" name="form1" method="post" action="你想跳转的页面路径"> <input type="subimt" name="" value="注册" /> </form> </body>用Javascript
<body> <script> function subimt() { window.location = "你想跳转的页面路径"; } </script> <form id="form1" name="form1" method="post" action=""> <input type="button" name="" value="注册" onclick="subimt()"/> </form> </body>还有一种用超链接形式的,