This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p>原文地址:<a href="http://www.blogjava.net/hwaspf/articles/320491.html" target="_blank">在一个FORM中实现多个ACTION动作</a></p> | |
<form name="testForm" method="post" action=""> | |
<input name="Name" type="text" id="Name"> | |
<input type="button" name="Button" value="Act1" onClick="act1();"> | |
<input type="button" name="Submit2" value="Act2" onClick="act2();"> | |
</form> | |
<script language="JavaScript"> | |
function act1() | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# filename: create_makefile.sh | |
# | |
# function definiton {{{ | |
#=============================================================================== | |
usage() | |
{ | |
echo "Usage: $script_file_name [options] {main_source_program_name [...]}" | |
echo | |
echo "description:" |