定位并替换字段中的html内容

时间:2019-07-01 06:24:42

标签: jquery html

我一直在尝试删除以下字段中的html内容,只保留数字和单词,我无法按字段名称来使用它。

jQuery(window).load(function() {
  jQuery "input[name=input_44[]]").change(
  function() {
    //alert('1');

    jQuery("input[name=input_44[]]").trigger('click');
  }
);

});


jQuery(window).load(function() {
  jQuery("input[name=input_44[]]").mouseleave(
    function() {
      //alert('1');
      jQuery("input[name=input_44[]]").val(jQuery(input_12_1).val().replace(/(<([^>]+)>)/ig, ""))
    }
  );
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<td class="gfield_list_cell gfield_list_44_cell3"><input type="text" name="input_44[]" value="html> sample"></td>

0 个答案:

没有答案