一段想用SyntaxHighlighter高亮的代码,却被jQueryUI给初始化了
这段是想展示的代码
<pre class="brush: xml">
<div class="area">
<div class="buttonset">
<input type="radio" id="unit-1" name="unit" checked="checked" /><label for="unit-1">天</label>
<input type="radio" id="unit-2" name="unit" /><label for="unit-2">小时</label>
</div>
</div>
</pre>
网页中包含如下正常的初始化脚本
$('.buttonset').buttonset();
这段初始化JS,怎么连<pre>标签内部的元素也给我处理了,这怎么办?