请教在html中嵌套javascript的问题
提示: 作者被禁止或删除 内容自动屏蔽
2010-09-11 13:39
2010-09-11 17:28
2010-09-12 01:35
2010-09-12 20:21
2010-09-13 20:04
2010-09-14 10:04
程序代码:<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>还有一种用超链接形式的,

2010-09-14 10:28
2010-09-14 17:13
2010-09-15 11:02
2010-12-06 22:54