如何通过cherrypy传递给mako的元素上获取Mootools事件?

时间:2010-01-07 04:27:41

标签: events mootools cherrypy

所以我在index.py:

class Test:
    @cherrypy.expose
    def index(self):
        return mylookup.get_template('test.html').render(item="<div id='blah'>test</div>")

在test.html中:

<script>
window.addEvent('domready', function() {
  $('blah').addEvent('click', function() {
      alert('success');
  });
});
</script>

点击该元素时没有任何反应。有什么想法吗?

%if item:     $ {}项 %endif

0 个答案:

没有答案