作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我的 Rails 4 应用程序中加载带有类的特定 div 时,我想调用一些 JS 函数。
<div class="myClass">
hello world
</div
如何仅在该div加载时调用一些js代码。
最佳答案
我不认为,它与rails有关
可以有两种方法:
1:在你的html DIV下面写一段JS代码
<div class="myClass">
hello world
</div
<script type="text/javascript">
yourfuncion();
</script>
2:文档准备好时调用函数,例如:
$(document).ready(function(){
yourfuncion();
});
关于javascript - Rails 4 中加载特定 div 时调用 JS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29768119/
我是一名优秀的程序员,十分优秀!