首页 >

JavaScript的事件绑定(方便不支持js的时候)【javascript】

web前端|js教程JavaScript的事件绑定(方便不支持js的时候)【javascript】
事件绑定
web前端-js教程
首先,比如我们使用JavaScript来加强我们的网页,但是我们要考虑到,如果用户的浏览器不支持JavaScript,或者用户disable了JavaScript的功能,那我们的网页能不能正常显示呢?例如下面的例子,

清新导航源码,ubuntu+rpm查找,爬虫 账号访问次数,php 850,seo新书 2018lzw

其中popUp这个函数是自定义的,新打开一个窗口来限制URL中的网页。但是如果当客户端不支持时,那这个网页就不能正常工作了。所以我们在这样做的使用,也考虑到更多,使用如下的代码就会显得更加合适。


接着,作者以CSS为例子。在我们使用CSS的过程中,我们发现,除了我们使用了把CSS文件给加载进来外,我们没有在我们的网页内容中加入任何css相关的代码,这样就能很好的把structure和style分开了,即我们的css的代码没有侵入我们的主要代码里面。这样就算客户端不知道css,但是我们的主要内容客户还是可以看到的,我们的内容结构也能在客户那里显示出来。所以JavaScript相当于behavior层,css相当于presentation层。JavaScript也能像CSS一样做到没有侵入性。下面是书上的一个例子。

优惠券搜索源码,乐视+ubuntu,tomcat部署去掉包前缀,java爬虫原版,php7.0与php7.4,江津短视频seo营销获客优化lzw

上面这段代码已经能保证在客户端不支持JavaScript的情况下仍然可以正常的工作,但是上面的代码中出现了onclick这样的event handler。所以现在我们使用像CSS中的方式来完成我们所要的功能。如下:

java ee源码下载,ubuntu的vm工具,爬虫利器测评视频,php cleanurl,seo热门吗lzw

这样,我们能在这个页面加载完成的时候,执行window.onload中,来检测哪些是使用了class,然后统一使用popUp的方法。如下代码


var links = document.getElementsByTagName("a");
for (var i=0 ; i if (links[i].getAttribute("class") == "popup") {
links[i].onclick = function() {
popUp(this.getAttribute("href")); //Attention use this in this place. Because this is equals onClick = "popUp(this.href)"
//so we cann't use links[i].
return false;
}
}
}

这样就能更少地侵入我们html代码了。

最后,作者讲了我们要做到向后兼容和JavaScript的最小化。向后兼容,我们可以使用类似if(document.getElementById)来测试这个方法时候存在,存在了才能使用。JavaScript代码的最小化主要是为了减少JavaScript,这样能加快我们网页的加载。

下面我在看书的时候碰到不懂的问题,希望大虾们能帮忙解决一下。

对于应该放在哪里?JavaScript DOM编程艺术中所说的,我们可以把放在之前,不要放在里,这样可以加快我们加载page的速度。不是很理解。

原文:

The placement of your scripts in the markup also plays a big part in initial load times. Traditionally,
we were told to always place scripts in the portion of the document, but there’s a problem with
that. Scripts in the block the browser’s ability to download additional files (such as images or
other scripts) in parallel. In general, the HTTP specification suggests that browsers download no more
than two items at the same time per hostname. While a script is downloading, however, the browser
won’t start any other downloads, even on different hostnames, so everything must wait until the script
has finished.
If you’re following the progressive enhancement and unobtrusive methodologies discussed earlier
in the chapter, then moving your tags shouldn’t be an issue. You can make your pages load
faster simply by including all your tags at the end of the document, directly before the

tag. When the scripts load, your window load events will still apply your changes to the document.


JavaScript的事件绑定(方便不支持js的时候)【javascript】
  • jQuery事件绑定on()、bind()与delegate() 方法详解【jquery】
  • jQuery事件绑定on()、bind()与delegate() 方法详解【jquery】 | jQuery事件绑定on()、bind()与delegate() 方法详解【jquery】 ...

    JavaScript的事件绑定(方便不支持js的时候)【javascript】
  • jQuery实现按钮只点击一次后就取消点击事件绑定办法【jquery】
  • jQuery实现按钮只点击一次后就取消点击事件绑定办法【jquery】 | jQuery实现按钮只点击一次后就取消点击事件绑定办法【jquery】 ...

    JavaScript的事件绑定(方便不支持js的时候)【javascript】
  • 关于jquery input textare 事件绑定及用法学习【jquery】
  • 关于jquery input textare 事件绑定及用法学习【jquery】 | 关于jquery input textare 事件绑定及用法学习【jquery】 ...