Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have an administrative area with some elements (2 fields text and ID and sort field) and each elements can be manage by create/edit/delete actions

And I think that I can make it easier by using textarea, where administrator can operates items as a text

<textarea>
  <item1:1>
  <item2:3>
</textarea>

where each item is included into < and > and it have the identifier after colon, so administrator can easily sort elements and rename them.

I just tested it one user and he said that numbers are confuse him.

May be put the numbers with colon into span tag and make it in different color....

what do you think? does textarea allowed tags? Is it more simple than working with items?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
306 views
Welcome To Ask or Share your Answers For Others

1 Answer

The content model for textarea is #PCDATA (processed character data). This means elements inside will not be accepted.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...