Get the text after element
我有密码
1 2 3 4 | ? ? ? ? |
如何禁用或删除此Simbol-"?"?
我用这个密码
1 2 3 | text = $('div').html(); text = text.replace('?',''); $('div').html(text); |
号
但嗨不太好。最后一个符号显示。
另一种方式?
当传递字符串时,
http://jsfidle.net/zkvss6uf/
1 2 3 | text = $('div').html(); text = text.replace(/?/g,''); $('div').html(text); |
您只需将全局标志(
1 2 3 | text = $('div').html(); text = text.replace(/?/g,''); $('div').html(text); |
JSfiddle示例