Skip to content

Commit a5882e2

Browse files
authoredMar 8, 2018
Create README.md
1 parent 6584510 commit a5882e2

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
 

‎README.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
## Copy paste filter label (can retain the specified label)
2+
#### HTML code
3+
```html
4+
<div class="con" contenteditable="true"></div>
5+
```
6+
#### JS code
7+
```javascript
8+
$(".con").bind("paste", function(){
9+
var _this = $(this);
10+
setTimeout(function(){
11+
var con = _this.html();
12+
var i, match;
13+
match = con.match(/<[^>]+>/gi);
14+
if (match) {
15+
for (i in match) {
16+
if (!match[i].match(/<(input|div|br).*?(?:>|\/>)/gi)) {
17+
con = con.replace(match[i], '');
18+
}
19+
}
20+
}
21+
match = con.match(/{[^}]+}/gi);
22+
if (match) {
23+
for (i in match) {
24+
if (!match[i].match(/<(input|div|br).*?(?:>|\/>)/gi)) {
25+
con = con.replace(match[i], '');
26+
}
27+
}
28+
}
29+
_this.html(con);
30+
}, 30)
31+
})

0 commit comments

Comments
 (0)
Please sign in to comment.