Need Pure/jQuery Javascript Solution For Cleaning Word HTML From Text Area

后端 未结 5 1415
慢半拍i
慢半拍i 2021-01-01 08:24

I know this issue has been touched on here but I have not found a viable solution for my situation yet, so I\'d like to but the brain trust back to work and see what can be

5条回答
  •  天命终不由人
    2021-01-01 08:59

    Edited from the jquery docs..

    $("textarea").change( function() {
        // check input ($(this).val()) for validity here
    });
    

    Thats for detecting the changes. The clean would probably be a regex of sorts

    edited above to look for a textarea not a textbox

提交回复
热议问题