在 drupal 网站上,我有一个带有webform的 table-like sorted inputs 。很难很好地显示长描述。有什么建议吗?
答案 0 :(得分: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/
还有其他建议吗?