<script>

            //元素隐藏,网址后面加上 ?sjd时才会显示

            if ((location.href || '').indexOf('sjd') > -1) {
                document.getElementById("元素id").style.display = "block";
            }

            // 网址后面加上 ?js时载入js文件 

            if ((location.href || '').indexOf('js') > -1) {
                document.write('<script src="js文件"><\/script>');
            }
        </script>