当前位置: 首页 > 工具软件 > JsAction > 使用案例 >

用JS动态改变表单form里的action值属性的方法

长孙玉泽
2023-12-01

红色部分的代码写在js加载jsp的方法中,当jsp页面加载出来时,动态的替换了form中的Action方法。

function billTypeLink(a){
url=a.attr("url");
    a.parent("ul").children("li").removeClass('active');
a.addClass("active");
$.ajax({
         type: "POST",
         url: url,
         dataType: "html",
         success: function(data){
                  alert(data);
                  $(".rightCon-main").html(data);
//在页面.rightCon-main的div中加载了一个data页面
                  document.getElementById("updateBillForm").action="${ctx}/bankAction!saveBill.action";//在id为updateBillForm中替换Action属性的值。
             $("#show").hide();
                  if($(".rightCon-bottom-center ul span").length > 0){//当有li标签存在的时候
                   $(".bill-checkBox").each(function(){//遍历新加载到页面的checkBox
                 var billId =  $(this).attr("id");//获取checkBoxID
                     var bills = billId.split("-");//拆分成数组获取单据操作id   
                     for(var i =0; i<bill.length;i++){
                 if(bills[1] == bill[i] && bills[2] == billType[i]){ 
                 $(this).attr("checked","true");//勾选页面数据
                 break;
                 }
                 }
                       
                   });
                  }
                  
               }
           });
       }



方法1:

<form id="form1" name="form1" method="post" action="../news/index.asp">
      <table width="100%" height="43" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td height="28"><input name="keyword" type="text" style="width:150px" id="keyword"/></td>
        </tr>
        <tr>
          <td height="28"><select name="Searchtype"  style="width:110px" id="Searchtype" οnchange="Searchtype1();">
            <option value="news" selected="selected">新闻中心</option>
            <option value="case">工程案例</option>
          </select>
          <input type="submit" name="Submit" value="搜索" /></td>
        </tr>
      </table>
  </form>
  <script language="javascript">
  function Searchtype1(){
  var type=document.getElementById("Searchtype").options[document.getElementById("Searchtype").selectedIndex].value;
  if (type=="news"){
document.getElementById("form1").action="../news/index.asp"}
  else if (type=="case"){document.getElementById("form1").action="../case/index.asp"}
  }
  </script>

 

方法2:

<html>
<head>
<script language="javascript">
function check(){
if(document.form1.a[0].checked==true)
document.form1.action="1.htm"
else
document.form1.action="2.htm"
}
</script>
</head>
<body>
<form name="form1" method="post" action="" onSubmit="check();">
转到页面一<input type="radio" name="a">
转到页面二<input type="radio" name="a">
<input name="" type="submit" value="提交">
</form>
</body>
</html>  

 类似资料: