1

我想动态更改“form.submit();”的任何实例 出现在某些选择元素的 onchange 函数中到 $('form').submit(); 以便为表单本身触发提交事件。

这是一个需要更新 onchange 函数的选择列表的示例:

<td class="form-field selectinput" align="left" valign="left" style="width: 90px;" title="Select status type">
        <select class="filterlist" name="cStatus" tabindex="5" style="width: 90px;" onchange="form.submit();">
          <option value="" title="[All]">[All]</option>
          <option value="A" title="Authorised">Authorised</option>
          <option value="C" selected="" title="Cancelled">Cancelled</option>
          <option value="U" title="Declined">Declined</option>
          <option value="R" title="Requested">Requested</option>
          <option value="T" title="Taken">Taken</option>
          <option value="W" title="Withdrawn">Withdrawn</option>
        </select>
      </td>

我在页面的标题部分插入以下内容以尝试更新该功能:

 $(document).ready(function(){
$(function() {
   $('select').each(function() {
     var txt = this.onchange ;
     alert(txt);
     var patt=/form.submit()/g;
     var result=patt.test(txt);
     if (result) {
        var txt =  txt.replace('form.submit()',""); 
        this.onchange = eval(txt);
     }
   });
});

});

警报消息出现:

函数 onchange(event) { form.submit(); } 块引用

然后控制台日志显示以下错误:

未捕获的类型错误:对象函数 onchange(event) { form.submit(); } 没有“替换”方法

我实际上可以让它与以下内容一起工作:

 this.onchange = function() { $('form').submit(); }

但是在某些情况下,onchange 有其他代码以及 form.submit(); 如:

form.submit();form.iYear.disabled=true;form.cGroupItem.disabled=true;

所以我不想替换整个函数本身,而是删除'form.submit();' 并将其替换为 '$('form').submit();',因此上面的内容将显示为:

$('form').submit();form.iYear.disabled=true;form.cGroupItem.disabled=true;

我已经尝试在不同的地方使用 toString() 和 eval() 但是每当我尝试编辑字符串 txt 时,我都会不断得到对象没有方法错误。

有任何想法吗??

4

1 回答 1

0

而不是做你时髦的 eval 和 replace 试试这个:

...
     if (result) {
        this.onchange = function(){}; //empty function
     }
...
于 2012-06-06T13:42:46.533 回答