Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以将 jQuery 与 JavaScript 的数学库混合以访问详细的函数吗?既然 jQuery 是有效的 JS,那应该没问题吧?
jQuery 不会杀死 JavaScript,它是建立在它之上的,你在 JS 中所做的任何事情都可以在 jQuery 框架内工作。
这就是说,Math要从 jQuery 中引用对象,您必须使用复杂而晦涩的名称Math:P
Math
$(function () { alert(Math.round(0.5)); });