{"id":1525,"date":"2024-10-27T20:24:50","date_gmt":"2024-10-27T23:24:50","guid":{"rendered":"https:\/\/desvendandoocodigo.com.br\/?p=1525"},"modified":"2024-10-27T20:59:58","modified_gmt":"2024-10-27T23:59:58","slug":"resumo-da-live-tiktok-27-10-2024","status":"publish","type":"post","link":"https:\/\/desvendandoocodigo.com.br\/?p=1525","title":{"rendered":"Resumo da Live TikTok 27\/10\/2024"},"content":{"rendered":"\n<p>Ol\u00e1 Pessoal! <\/p>\n\n\n\n<p>Na Live do dia 27\/10\/2024 fizemos o resumo semanal e abordamos os temas QueryString e CallBack com JavaScript.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html>\n&lt;html lang=\"pt-br\">\n&lt;head>\n    &lt;meta charset=\"UTF-8\">\n    &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    &lt;title>P\u00e1gina 1&lt;\/title>\n&lt;\/head>\n&lt;body>\n    \n    &lt;h1> P\u00e1gina de Envio&lt;\/h1>\n\n    &lt;form id=\"formulario\">\n        &lt;p>Nome:&lt;\/p>\n        &lt;input type=\"text\" id=\"nome\" name=\"nome\" required>\n        &lt;br>\n\n        &lt;p>Idade:&lt;\/p>\n        &lt;input type=\"number\" id=\"idade\" name=\"idade\" required>\n        &lt;br>\n        &lt;br>\n        &lt;button type=\"submit\"> Enviar&lt;\/button>\n    &lt;\/form>\n\n    &lt;script>\n\n        document.getElementById('formulario').addEventListener('submit', function(event){\n           \n            event.preventDefault();\n\n            const nome = document.getElementById('nome').value;\n            const idade = document.getElementById('idade').value;\n\n\n          const url = `pagina2.html?nome=${encodeURIComponent(nome)}&amp;idade=${encodeURIComponent(idade)}`;\n\n          window.location.href = url\n\n\n        })\n    &lt;\/script>\n\n&lt;\/body>\n&lt;\/html>\n\n\n\n\n&lt;!DOCTYPE html>\n&lt;html lang=\"pt-br\">\n&lt;head>\n    &lt;meta charset=\"UTF-8\">\n    &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    &lt;title>P\u00e1gina 2&lt;\/title>\n&lt;\/head>\n&lt;body>\n    \n    &lt;h1>P\u00e1gina de Recep\u00e7\u00e3o&lt;\/h1>\n    &lt;p id=\"resultado\">&lt;\/p>\n\n    &lt;script>\n\n        const params = new URLSearchParams(window.location.search);\n\n        const nome = params.get('nome');\n        const idade = params.get('idade');\n\n        const resultado = document.getElementById('resultado');\n\n        if(nome &amp;&amp; idade){\n\n            resultado.textContent = `Nome: ${nome}, Idade: ${idade}`;\n\n        }else{\n            resultado.textContent = 'Par\u00e2metros n\u00e3o encontrados na URL';\n\n        }\n    &lt;\/script>\n&lt;\/body>\n&lt;\/html>\n\n\n\nfunction somar(a, b){\n\n    console.log('Somando os valores...');\n\n    return a + b;   \n\n}\n\nconsole.log(  somar(5 , 6) );\n\n\n\nfunction saudar(nome, callback){\n\n    console.log('Ol\u00e1 ' + nome);\n\n    callback();\n\n}\n\nfunction despedir(){\n\n    console.log('Tchau!')\n}\n\nsaudar('Marcos', despedir);\n\n\nfunction calculadora(a, b, operacao){\n\n    return operacao(a, b);\n\n}\n\nfunction somar(a, b){\n    return a + b;\n}\n\nfunction multiplicar(a, b){\n    return a * b;\n}\n\nconsole.log(   calculadora( 5, 3, somar )    );\nconsole.log(   calculadora( 5, 3, multiplicar )    );\n\n\n<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"Live 27102024 | QueryString e CallBack com JavaScript | #javascript\" width=\"960\" height=\"540\" src=\"https:\/\/www.youtube.com\/embed\/ZO5tMiOBmVA?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure>\n\n\n\n<figure class=\"wp-block-image is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"321\" src=\"https:\/\/desvendandoocodigo.com.br\/wp-content\/uploads\/2024\/01\/hotmart.png\" alt=\"\" class=\"wp-image-162\" style=\"width:134px;height:auto\" srcset=\"https:\/\/desvendandoocodigo.com.br\/wp-content\/uploads\/2024\/01\/hotmart.png 1000w, https:\/\/desvendandoocodigo.com.br\/wp-content\/uploads\/2024\/01\/hotmart-300x96.png 300w, https:\/\/desvendandoocodigo.com.br\/wp-content\/uploads\/2024\/01\/hotmart-768x247.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p><a href=\"https:\/\/go.hotmart.com\/V89811082M?dp=1\">https:\/\/go.hotmart.com\/V89811082M?dp=1<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/go.hotmart.com\/X90111663X?dp=1\">https:\/\/go.hotmart.com\/X90111663X?dp=1<\/a><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p><strong>HOR\u00c1RIO DAS LIVES<\/strong><\/p>\n\n\n\n<p>Domingo e Segunda \u00e0s 19:00hs<\/p>\n\n\n\n<p>Quarta \u00e0s 18:00hs<\/p>\n\n\n\n<p>Quinta e Sexta \u00e0s 9:30hs<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Ol\u00e1 Pessoal! Na Live do dia 27\/10\/2024 fizemos o resumo semanal e abordamos os temas QueryString e CallBack com JavaScript. https:\/\/go.hotmart.com\/V89811082M?dp=1 https:\/\/go.hotmart.com\/X90111663X?dp=1 HOR\u00c1RIO DAS LIVES Domingo e Segunda \u00e0s 19:00hs Quarta \u00e0s 18:00hs Quinta e Sexta \u00e0s 9:30hs<\/p>\n","protected":false},"author":1,"featured_media":1097,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[18],"tags":[],"_links":{"self":[{"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/posts\/1525"}],"collection":[{"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1525"}],"version-history":[{"count":3,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/posts\/1525\/revisions"}],"predecessor-version":[{"id":1528,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/posts\/1525\/revisions\/1528"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/media\/1097"}],"wp:attachment":[{"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1525"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1525"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1525"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}