所以基本上我在一个页面上有jquery代码:
- 打开一个新的弹出窗口
- 显示导轨视图页面
- 在新打开的页面上操作项目
不知道有什么样的解决方案,但我认为这应该很容易。
那是代码:
// open a popup window for example /fault_books/3
popup = window.open("/fault_books/" + <%= @fault_book.id %> , "popup");
// trying to get the scope of the element
var module = $(".module-logo", popup.document.body)
// manipulating the element
$(module).hide();