`
八贤王
  • 浏览: 40367 次
社区版块
存档分类
最新评论
文章列表
<html> <head> <script type="text/javascript" src="/jquery/jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){   $("a").click(function(event){     event.preventDefault();   }); }); </script> < ...
$(document).ready(function() 页面加载完成后开始运行do stuff when DOM is ready 中的语句!    $(document).ready(function() {        // do stuff when DOM is ready        });    选择器    $(“a”)是一个jquery的选择器(selector)    $("")其中的字段就是元素的标记。比如$("div")就是<div></div>    click是函数对象的一个方法。方法为点击鼠标事 ...
<SCRIPT> function fun(){ var v = event.srcElement.tagName; if(v!= 'INPUT'){ if((window.parent.location).toString().indexOf("screen_demoX.jsp")>0){ window.parent.location=window.location.href; }else{ history.go(-1); } } ...
Global site tag (gtag.js) - Google Analytics