if (window.Event) document.captureEvents(Event.MOUSEUP); function nocontextmenu() { event.cancelBubble = true event.returnValue = false; return false; } function norightclick(e) { if (window.Event) { if (e.which == 2 || e.which == 3) return false; } else if (event.button == 2 || event.button == 3) { event.cancelBubble = true event.returnValue = false; return false; } } document.oncontextmenu = nocontextmenu; // for IE5+ document.onmousedown = norightclick; // for all others
       成都精思仪器有限公司专业研发生产钢卷尺检定台系列产品、标准钢卷尺、钢直尺检定台系列产品、水平尺自动校准装置、声波检测仪声时测量装置、医用输液泵/注射泵检测仪和电梯限速器校准装置等,是一家专注计量仪器研发、生产、销售的高科技公司,中国计量大学校友创业联盟企业,注册资金100万人民币。公司现已取得实用新型专利四项,软件著作权十四项,并已认定国家高新···
测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试
$(document).ready(function() { //Default Action //On Click Event $("ul.tabs li").click(function() { $("ul.tabs li").removeClass("active"); //Remove any "active" class $(this).addClass("active"); //Add "active" class to selected tab $(".tab_content").hide(); //Hide all tab content var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content $(activeTab).fadeIn(); //Fade in the active content return false; }); });