节点js按钮单击

gstyhher  于 2021-09-23  发布在  Java
关注(0)|答案(0)|浏览(183)

我用node.js运行了这个jade(pug)页面,我试图将按钮的id传递到下一个页面。我尝试了javascript,但它不起作用。
这是我的密码

script.
 var test = function() {
   console.log('button clicked!')

 }

.container
  table.tabSearch(border='0' )
      tr
        td
          h3 Barre de recherche :
        td
          input#Search(type='search' name='q' aria-label='Search through site content')
        td
          input#BtnSearch(type='submit' onclick="#" value='Rechercher')

  table.tableCat(border='0')
        tbody

          each dr,index in data         
           if index % 3 == 0
            tr

           td         
             .card
               img(src='https://cdn.glitch.com/49ffbc5c-e916-4b9d-bc7c-920348ff00c3%2F3381.jpg?v=1627158038684' alt='tapis rouge' style='width:100%')
               h1.title=dr.Nom
               p.price=dr.Prix + "$"
               p.description=dr.Description
               p.dimension=dr.Dimension
               p
                 a(href='detailCatalogue') 
                   button#dr.codeProduit(onclick='test()') Détail 
                 .btn
                  a(href='feedback') 
                   button Feedback

这是我的路线

router.get("/detailCatalogue", function(req, res, next) {

  res.render("detailCatalogue");
});

基本上我想要的是每当我点击 button#dr.codeProduit ,我希望能够提取按下的按钮。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题