onclick=quot;quot; vs event handler(onclick=“vs 事件处理程序)
问题描述
如果我想执行一个函数,我更喜欢做内联js:
If I want a function to be executed, I prefer doing inline js:
<p id="element" onclick="doSomething();">Click me</p>
因为它更容易调试.
但是,我听到有人说不要使用内联 js,然后:
However, I hear people saying not to use inline js, and do:
document.getElementById('element').onclick = doSomething;
为什么推荐js事件监听器?
Why is the js event listener recommended?
推荐答案
基本上它与整体有关,我相信保持一切独立.所以保持 HTML/CSS/JS 都是分开的.它使您的 HTML 更整洁,而且我认为更易于导航.
Basically it has to do with the whole keep everything separate I believe. So keep HTML/CSS/JS all separate. It makes your HTML tidier and, I think, easier to navigate without.
然后,当/如果您需要进行大的更改时,您有足够的空间,无论如何都必须将内联 JS 转移到外部文件,或者如果您想将相同的功能应用于多个按钮,那么代码就更少了.更少的代码是一个更快乐的地方
Then when/if you need to make large changes, you have ample space with having to shift the inline JS to an external file anyway OR if you want to apply the same function to more than one button, then it's less code. And less code is a happier place
如果你有正确的 JS 文件,并且有完整的文档记录,那么由外部人员导航它们会更容易
If you have your JS files properly, and thoroughly documented then navigating them by an outside person is made eaiser
这篇关于onclick=“"vs 事件处理程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:onclick=“"vs 事件处理程序
基础教程推荐
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 直接将值设置为滑块 2022-01-01