5 questions
problems you are havingWe are using Pug for development in VSCode.I would like to supplement the css class name when I enter it. Is there any way?There are html and jsx complements, but I can't find a...
-for(var i = 0; i<10; i++) style. #sum+i{ background-color:green; }Working in pug, you want to apply CSS repeatedly to elements with IDs sum0, sum1, sum2,... sum9. What's the problem?
head meta(charset='utf-8') script(src=//code.jquery.com/jquery-3.3.1.min.js) script. var a=$(#test_id).text(); alert(a); body h1(id='test_id')='test value'Why does it say undefined? I beg you.
Creating page with pug template. I put the jpg image file in the same directory as the pug template file and wrote the code as follows, but no background is specified. What's the problem?doctype htmlh...
html head script(src=//code.jquery.com/jquery-3.3.1.min.js) title='Membership page' script. function submitAction(event) { var a = $('input[name=username]').val(); if(a.length===0){ alert('...
© 2024 OneMinuteCode. All rights reserved.