<script>
funtion changeAction1()
{
document.getElementById("xxx").action = "zzz";
}
funtion changeAction2()
{
document.getElementById("xxx").action = "hhh";
}
</script>
<form id="xxx" action="yyy">
<input type="button" onclick="changeAction1()"/>
<input type="button" onclick="changeAction2()"/>
</form>
funtion changeAction1()
{
document.getElementById("xxx").action = "zzz";
}
funtion changeAction2()
{
document.getElementById("xxx").action = "hhh";
}
</script>
<form id="xxx" action="yyy">
<input type="button" onclick="changeAction1()"/>
<input type="button" onclick="changeAction2()"/>
</form>

676

被折叠的 条评论
为什么被折叠?



