leizongmin / js-xss

Sanitize untrusted HTML (to prevent XSS) with a configuration specified by a Whitelist
http://jsxss.com
Other
5.21k stars 628 forks source link

需要一个白名单规则是,当a标签有某个class值才在白名单里面,其他的都去掉 #102

Open Alicebby opened 7 years ago

Alicebby commented 7 years ago

需要一个白名单规则是,当a标签有某个class值才在白名单里面,其他的都去掉; 比如,必须当匹配到a 并且class值为view才不去掉,其他的a标签都去掉,请问怎么做呀

realgeoffrey commented 5 years ago

同求。 但是貌似无法做到, 对于<a class="view" href="xx">1</a><a class="no-view" href="xx">2</a>,可以用筛选成:<a class="view" href="xx">1</a><a>2</a>。而不能筛选成:<a class="view" href="xx">1</a>2