Home >Web Front-end >HTML Tutorial >TXT text parsing data problem_html/css_WEB-ITnose
The content in text box A is 32008:1:0:0:1,32009:1:3:0:1:{"bb":1|"qq":1|"cc":23}
I clicked the edit button to edit it, and the text box could only display 32008:1:0:0:1,32009:1:3:0:1:{
The information after the double quotes was gone. . Find the solution! !
Is there anyone? ? ? ?
Could you please check if there is any limit on the text length of the edit box?
No restrictions. . It’s no problem to fill in pure English
Is the text box not big enough? Take a screenshot or post a code
There are no restrictions. . It's no problem if you fill in pure English
Could you please check whether the text box is bound to a JS verification event or something?
It feels like the string has been intercepted by JS.
There are no verification events, which is what frustrates me. . It is suspected that the double quotes have been parsed by html
Reason: the double quotes html have been parsed
There are two simple solutions:
1. Use single prime to expand
2. Use escaped acsii value
Post the code and have a look~ As you put it, we don’t know very well. We can only rely on guessing. You should know the problem after posting it Where is it~
Reason: The double quote html was parsed
There are two simple solutions:
1. Use single prime to expand
< input type="text" name="xx" value='xxxx"'>
2. Use escaped acsii value
Brother is right. Double quotes are parsed. Just replace it with single quotes. . . Hey, it turns out this is really the problem
Post the code and take a look~ As you put it, we don’t know very well. We can only rely on guessing. Once you post it, you should know where the problem is~
Solved . Thank you for your enthusiastic help