Posted in Javascript onFebruary 15, 2007
<form onsubmit="aa(this);"> <input type="text" name="" value="test" /><input type="submit" value="提交" /> </form> <iframe src="" name="fA" frameborder="1" scrolling="no"></iframe> <iframe src="" name="fB" frameborder="1" scrolling="no"></iframe> <script type="text/javascript"> function aa(oForm){ oForm.action="http://bbs.51js.com"; oForm.target="fA" oForm.submit(); oForm.action="http://www.iecn.net/bbs/"; oForm.target="fB" oForm.submit(); return false; } </script>
在一个form用一个SUBMIT(或button)分别提交到两个处理表单页面的代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@