这是我的 application.js 文件中的代码:
this.change(function() {
$.post("dvbd", {id: this.val()}, null, "script");
});
这是 dvbd.js.erb 中的内容:
$("#dave").html(:id);
我想要做的是当this
发生变化时,dave div 的值是this
html。所以我想我的问题是如何在我的 js.erb 文件中使用 .post 发送的数据?