/* * @Author: printempw * @Date: 2016-04-03 13:44:36 * @Last Modified by: printempw * @Last Modified time: 2016-04-03 14:25:52 */ 'use strict'; $(document).ready(function() { $('pre').each(function(i, block) { hljs.highlightBlock(block); }); }); $('#mod-select').change(function() { $('#version-select').children().each(function() { $(this).remove(); }); if ($(this).val() == "csl") { $('#version-select').append(''); $('#version-select').append(''); } else if ($(this).val() == "usm") { $('#version-select').append(''); $('#version-select').append(''); $('#version-select').append(''); } }); $('#version-select').change(function() { $('#config-13_1-upper').hide(); $('#config-13_1-lower').hide(); $('#config-1_4-upper').hide(); $('#config-1_2-1_3').hide(); $('#config-1_2-lower').hide(); $('#config-'+$(this).val()).show(); });