标签:记录 转义 可见 div htm 方法 html 功能 使用
html方法应该是对内容具有自动转义功能的。
即:
$("p").html("abc123-_!@#$%^&*()_+{}<>国機Re?é"); p标签这里显示的内容: abc123-_!@#$%^&*()_+{}<>国機Re?é //html方法会自动进行转义。
$("p").html("<div>abc123-_!@#$%^&*()_+{}<>国機Re?é</div>"); p标签这里显示的内容: abc123-_!@#$%^&*()_+{}<>国機Re?é
$("p").html("abc123-_!@#$%^&*()_+{}<>国機Re?é"); p标签这里显示的内容: abc123-_!@#$%^&*()_+{}<>国機Re?é
由以上可见:
html方法会把
abc123-_!@#$%^ & a m p; * ( ) _+{} < > 国機Re?é //传入html方法的参数
abc123-_!@#$%^ & * ( ) _+{} < > 国機Re?é //使用html方法后的内容。可见html方法对其进行了转义。
标签:记录 转义 可见 div htm 方法 html 功能 使用
原文地址:http://www.cnblogs.com/yyzyxy/p/7738592.html