0

我有一个 Web 应用程序,我需要在其中添加重定向到其他视图的可能性JQUERY

<script>
         $(function () {
              $("rect[fill='#99ccff']").live("hover", function () {
               if (confirm("Voulez-vous gérer le contenu de cet élément ?") == true) {
                location.href = "@Url.Content("~/User/Edit_Content_Project")?id_project=" + "@Model[0]";
                 }

                        });
                        });

  </script>

我的问题是该confirm框连续出现两次。此外,我需要hover事件的动作在我focus out被选择的元素之前是不活动的。

我怎样才能改变我的代码来做到这一点?

4

1 回答 1

1

我想这就是你要找的那个,

  <script>
         $(function () {
              $("rect[fill='#99ccff']").mouseleave(function(){
               if (confirm("Voulez-vous gérer le contenu de cet élément ?") == true) {
                location.href = "@Url.Content("~/User/Edit_Content_Project")?id_project=" + "@Model[0]";
                 }
              });
         });
    </script>
于 2013-10-18T10:45:20.203 回答