按钮事件在MVC中不起作用

时间:2016-01-02 13:23:52

标签: javascript jquery html

我有以下问题:

我有一个按钮,如:<button id="button_show_countries" >Start</button> 在index.html中 以及view.js中的click事件:

        $("button#button_show_countries").click(function() {
            debug('View Click Event triggered: notice the Controller that the user wants to see the Interests data');
            Controller().countrieslandscapeasked();
        });

这非常好。现在我用视图创建一个按钮。这个按钮我添加到index.html。按钮看起来像:

   <button class="insertButton" type="button" id="insert_button_0">insert here</button>

并且在视图中也是一个eventlistener:

$("#insert_button_0").click(function() {
            debug('Data should be add at Position 0');

        });

但是当我点击按钮时,事件不会被解雇&#34;。我的代码出了什么问题? :/ 按钮工作,如果我在开头添加他像show countries按钮。 在运行时动态添加按钮是否有问题?

感谢您的帮助。

0 个答案:

没有答案