本文介绍了为什么不能使用\“在HTML输入标签?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在我的输入标签值中显示 123

我写这个:

 < INPUT TYPE =textNAME =value =12 \3> 

但它不正确



WHY ?

PS:我必须将转移至& quot; ,或将更改为'?我不喜欢它

解决方案

HTML没有像其他语言一样的转义序列。在HTML属性值中,唯一的特殊字符是< & ,并且取决于引号',并且唯一使用这些字符的是:

或者您使用单引号,则不需要对双引号进行编码,反之亦然:

 < INPUT TYPE =textNAME =value = '123'> 


i want show 12"3 in my input tag value

i write this:

<INPUT TYPE="text" NAME="" value="12\"3">

but it's not be right

WHY ?

PS: i must transfer " to &quot; ,or change " to '? i don't like it

解决方案

HTML simply does not have escape sequences like other languages. In HTML attribute values the only special characters are <, & and depending on the quotes " or '. And the only to use these characters are character references:

Or you use single quotes, then you don’t need to encode the double quotes and vice versa:

<INPUT TYPE="text" NAME="" value='12"3'>

这篇关于为什么不能使用\“在HTML输入标签?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 06:12