Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 jQuerysval函数感到困惑。似乎它在设置值时对 html 特殊字符进行了编码,但 jQuerys 文档没有说明任何内容。
val
这是 jQuery 的功能还是内部浏览器功能?
jsFiddle 演示
.val不,当在文本区域或文本输入字段上设置值时,jQuery 不会编码 html 特殊字符。
.val
$("#d").val(" !@#$%^&*()_+-=<>,./:';¿█"); $("#t").val(" !@#$%^&*()_+-=<>,./:';¿█");