将Jquery UI与express.js一起使用

时间:2013-08-15 07:06:37

标签: node.js jquery-ui backbone.js express pug

我正在使用节点骨干应用程序。我创建动态内容并添加jquery UI可拖动到我创建的内容或元素。但是,当我的模板系统渲染时,我的元素甚至不会移动。路径是正确的。我使用一个类来引用这些元素和draggable方法。

有人能告诉我包含jquery ui和jquery脚本的正确方法是什么,以便正确加载?

layout jade - index.jade - 在index.jade

中呈现的模板(扩展布局)

在我的应用程序中,我有一个连接到主干的jquery模块,但由于某种原因,jquery UI没有与它连接,因此我必须在它旁边添加一个jquery脚本。但是当我在我的模板中创建带有主干的动态元素时,jquery将无法工作。我使用.html()将它们添加到模板中。

这是layout.jade

!!! 5
html(lang="en")
  head
    title project
    meta(name='viewport', content='width=device-width, initial-scale=1.0')
    link(rel='stylesheet',href='/styles/bootstrap.css')
    link(rel='stylesheet',href='/styles/styles.css')

  body
   .navbar.navbar-inverse
    .container
        button.navbar-toggle(type='button', data-toggle='collapse', data-target='.nav-collapse')
          span.icon-bar
          span.icon-bar
          span.icon-bar
        a.navbar-brand(href='#') 
         img(src='/img/greatlogowhite.png', width='300')
        .nav-collapse.collapse
          ul.nav.navbar-nav
            li.active
             a(href='#') 
              img(src='/img/house.svg', width='70')
            li
             a(href='#about')
              img(src='/img/pen.svg', width='70')
            li
             a(href='#contact')
              img(src='/img/search.svg', width='70')
            li
             a(href='#contact')
              img(src='/img/chat.svg', width='70')

这是index.jade

  block content
  block scripts


extends layout

block content
  div#content

block scripts
  script(data-main='js/boot', type='text/javascript',src='/js/libs/require.js')
  script(type='text/javascript', src='http://code.jquery.com/ui/1.10.3/jquery-ui.js')

这就是我尝试使用jquery ui

的方法
<script> 
    $(document).ready(function() {
           $( ".pic" ).draggable();
    });
</script> 

1 个答案:

答案 0 :(得分:0)

实际上,我是为解决这个问题而做的。无论谁使用backbone,node.js和require.js,记得将jquery和jquery UI包含为带有require的库,并在创建带有主干的动态元素时使用:

$('#content').append(html); inside backbone call jquery UI

            $('.drag').draggable();