作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在用 Ruby on Rails 编写一个表单,并希望有一个调用 Javascript 函数的选择框。在表单文件中,这是我用来尝试添加选择框的行:
<%= f.select :question_select, Question.all, :prompt => "New Question", :onchange => "displayQuestion(this)" %>
function displayQuestion(link) {
alert("Changed question");
}
最佳答案
您可能知道,Rails 3 强烈鼓励 UJS(不显眼的 JavaScript),这基本上意味着 JavaScript 承担了繁重的工作,并且您不应该将客户端交互性与表单生成器联系起来。我建议在这里做一些非常相似的事情——仅仅因为你动态地添加元素并不意味着你不能使用 jQuery 来观察它们的变化。
在您的模板中:
<%= f.select :question_select, Question.all, {prompt: "New Question"}, data: { question: true } %>
<select id="..." data-question="true">
...
</select>
change
带有
data-question
的任何元素上的事件在整个文档上设置:
$(function() {
$(document).on('change', '[data-question]', function() {
// this == the element that fired the change event
alert('Changed question');
});
});
data-question
,您可以简单地向元素添加一个类,然后修改您的 jQuery 以使用该类:
$(function() {
$(document).on('change', '.question', function() {
// this == the element that fired the change event
alert('Changed question');
});
});
关于ruby-on-rails - 如何在 Ruby on Rails 中为表单元素添加 onchange 监听器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13600850/
我是一名优秀的程序员,十分优秀!