我正在尝试使用window.status在状态栏中显示不同的URL但不能正常工作
这是我正在使用的代码
link_to("clickhere","www.google.com",:class => "show-receipt, :onMouseover =>"window.status='Some text i want to show'")
鼠标悬停时它没有显示所需的内容 状态栏中的文字,而不是显示“www.google.com”
link_to("clickhere","www.google.com",:class => "show-receipt, :onMouseover =>"alert('hello')")
工作......我不明白什么是错的