Ask Question Forum:
Model Library:2025-02-08:A.I. model is online auto reply
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by Norton Alex
at 2024-08-30 22:18:51
Point:500 Replies:1 POST_ID:829258USER_ID:12423
Topic:
javascript
I have copied some html page from internet, when I run it
and see its source code by devtools
it generate strange character as
<style>
? a{ display: block; ? ? ? ? /* */
}
</style>
I don't know why it has spade sharp ? symbol (actully not ? char)
How to remove all
Any comment
Accepted Solution
Author: Norton Alex replied at 2024-08-30 22:19:38
500 points Excellent
ASCII is in range of 0 to 127, so:
str.replace(/[^\x00-\x7F]/g, "");