问问题
193 次
1 回答
0
这是我为附加描述折叠到标签(添加为节点描述)所做的:
<script type="text/javascript">
$(document).ready(function(){
$(".form-item:has(div.description)").children("label").append(function(){
$(this).parent().children('.description').hide();
return '<sup><a href="#" onclick="$(this).parent().parent().parent().find(\'.description\').toggle();" title="'+$(this).parent().children('.description').text()+'"><strong>?</strong></a></sup>';
});
});
</script>
这里的沙箱:http: //jsfiddle.net/eapo/3ubec/
还有其他建议吗?
于 2013-02-05T22:52:23.140 回答