jquery 相关问题

jQuery是一个Javascript库,考虑添加Javascript标记。 jQuery是一个流行的跨浏览器JavaScript库,它通过最小化浏览器之间的差异来促进文档对象模型(DOM)遍历,事件处理,动画和AJAX交互。标记为jquery的问题应该与jquery相关,因此有问题的代码应该使用jquery,并且至少需要jquery与用法相关的元素。

后端未刷新正确数据

我正在尝试制作一个非常简单的彗星测试页面。我有一个主客户端页面,div ID 为#TextHistory。此页面中的 JavaScript 应创建一个到 back-end.php 的开放连接

回答 2 投票 0

Ajax jQuery 图片上传 - 处理这个问题的最佳方法是什么?

我有一个带有表单的页面,用户在注册个人资料之前访问该页面以填写一些信息。表格下方是个人资料外观的预览。我有一些 JavaScri...

回答 1 投票 0

基于服务器时间的静态倒计时器

客户想要一个启动页面,该页面将显示静态倒计时,当倒计时完成时,用户将被重定向到另一个页面。 这次发布就像是所有用户的活动,所以我想

回答 1 投票 0

更改活动选项卡上的父 Div 背景颜色

我试图弄清楚如何在单击选项卡时更改父 div 容器背景颜色。我想要拥有它,以便当选项卡处于活动状态时它会向父 div 添加一个类。每个活跃...

回答 4 投票 0

jQuery Ajax 脚本不适用于移动浏览器(任何类型)

jQuery Ajax 脚本不适用于移动浏览器(任何类型)。它适用于任何类型的桌面浏览器和移动设备的模拟。但是当上传到生产服务器并尝试执行时...

回答 1 投票 0

php 中换行的 jQuery 语法是什么?

我试图在 jQuery 中找到运算符,以便在 php 中使用 jq 代码时在下一行编写代码 这是我的工作代码:- 我试图在 jQuery 中找到运算符,以便在 php 中使用 jq 代码时在下一行编写代码 这是我的工作代码:- <?php $addoldgoldrow = ' $(document).on("click",".add_btns",function(e) { e.preventDefault(); var markups = "<tr class=\'rowaccs\'><td><input type=\'text\' class=\'sl_no\' name=\'sl_no[]\' style=\'width: 100%\'></td><td><input type=\'text\' class=\'oweight inputbox input_table1\' name=\'oweight[]\' style=\'width: 100%\'></td><td><input type=\'text\' class=\'ostone_weight inputbox input_table1\' name=\'ostone_weight[]\' style=\'width: 100%\'></td><td><input type=\'text\' class=\'ovd inputbox input_table1\' name=\'ovd[]\' style=\'width: 100%\'></td><td><input type=\'text\' class=\'onet_weight inputbox input_table1\' name=\'onet_weight[]\' style=\'width: 100%\'></td><td><input type=\'text\' class=\'orate inputbox input_table1\' name=\'orate[]\' value=\'' . $metal_rate . '\' style=\'width: 100%\'></td><td><input type=\'text\' class=\'oamount inputbox input_table1 table1_end row_end\' name=\'oamount[]\' style=\'width: 100%\' readonly></td><td><span class=\'rowcloseoldgold\'><i class=\'fa fa-times\' style=\'color: #C11429;\' aria-hidden=\'true\'></i></span></td</tr>"; $("table#old_gold tbody").append(markups); indexassigneroldpurchase(); }); '; $this->registerJs($addoldgoldrow, View::POS_READY); ?> 我正在尝试这样做 <?php $addoldgoldrow = ' $(document).on("click",".add_btns",function(e) { e.preventDefault(); var markups = "<tr class=\'rowaccs\'> <td><input type=\'text\' class=\'sl_no\' name=\'sl_no[]\' style=\'width: 100%\'></td> <td><input type=\'text\' class=\'oweight inputbox input_table1\' name=\'oweight[]\' style=\'width: 100%\'></td> <td><input type=\'text\' class=\'ostone_weight inputbox input_table1\' name=\'ostone_weight[]\' style=\'width: 100%\'></td> <td><input type=\'text\' class=\'ovd inputbox input_table1\' name=\'ovd[]\' style=\'width: 100%\'></td> <td><input type=\'text\' class=\'onet_weight inputbox input_table1\' name=\'onet_weight[]\' style=\'width: 100%\'></td> <td><input type=\'text\' class=\'orate inputbox input_table1\' name=\'orate[]\' value=\'' . $metal_rate . '\' style=\'width: 100%\'></td> <td><input type=\'text\' class=\'oamount inputbox input_table1 table1_end row_end\' name=\'oamount[]\' style=\'width: 100%\' readonly></td> td><span class=\'rowcloseoldgold\'><i class=\'fa fa-times\' style=\'color: #C11429;\' aria-hidden=\'true\'></i></span></td</tr>"; $("table#old_gold tbody").append(markups); indexassigneroldpurchase(); }); '; $this->registerJs($addoldgoldrow, View::POS_READY); ?> + 运算符不起作用 我尝试了“+”和“+” 哪种运算符最适合连接这些线路? 只需在每行末尾添加 \ 所以你的代码看起来像这样: <?php $addoldgoldrow = ' $(document).on("click",".add_btns",function(e) { e.preventDefault(); var markups = "<tr class=\'rowaccs\'> \ <td><input type=\'text\' class=\'sl_no\' name=\'sl_no[]\' style=\'width: 100%\'></td> \ <td><input type=\'text\' class=\'oweight inputbox input_table1\' name=\'oweight[]\' style=\'width: 100%\'></td> \ <td><input type=\'text\' class=\'ostone_weight inputbox input_table1\' name=\'ostone_weight[]\' style=\'width: 100%\'></td> \ <td><input type=\'text\' class=\'ovd inputbox input_table1\' name=\'ovd[]\' style=\'width: 100%\'></td> \ <td><input type=\'text\' class=\'onet_weight inputbox input_table1\' name=\'onet_weight[]\' style=\'width: 100%\'></td> \ <td><input type=\'text\' class=\'orate inputbox input_table1\' name=\'orate[]\' value=\'' . $metal_rate . '\' style=\'width: 100%\'></td> \ <td><input type=\'text\' class=\'oamount inputbox input_table1 table1_end row_end\' name=\'oamount[]\' style=\'width: 100%\' readonly></td> \ td><span class=\'rowcloseoldgold\'><i class=\'fa fa-times\' style=\'color: #C11429;\' aria-hidden=\'true\'></i></span></td</tr>"; $("table#old_gold tbody").append(markups); indexassigneroldpurchase(); }); '; ?>

回答 1 投票 0

Javascript - 如何从单个 zip 文件读取多个 PDF 文件

我必须通过输入上传一个zip文件,zip文件包含多个pdf和文本文件,我必须从zip文件中仅读取pdf文件。 可以使用 https://gildas-lormeau.github.io/zip.js 吗?

回答 1 投票 0

Asp.net core Razor 页面中的 Ajax 错误 400(错误请求)

我有一段代码,用于收集 HTML 页面中的输入值并使用 AJAX 将它们发布到处理程序。 但是,当通过 AJAX 发送时,我收到 400 Bad Request 错误,并且处理程序是...

回答 1 投票 0

选择后 Div 不显示

出于某种原因,我可以显示框和所有内容,但是每次我在选择选择后尝试显示 DIV 时,什么也没有发生...请建议。 $(文档).ready(函数() { var div =

回答 1 投票 0

如何使用 $.getJSON() 方法从操作类获取 String 值?

我尝试使用 $.getJSON() 方法从操作类获取 String 值,但得到的结果为未定义。这是我尝试过的代码片段 脚本: $(函数() { ...

回答 4 投票 0

Bootstrap Navbar 在折叠时移动窗口

这一切都发生在移动屏幕上。我有这个导航栏: 这一切都发生在移动屏幕上。我有这个导航栏: <nav class="navbar navbar-dark sticky-top navbar-expand-lg"> <div class="container-fluid"> <a class="navbar-brand" href="#top"> <img src="images/id/logo.svg" height="30" class="d-inline-block align-top" alt=""> </a> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarSupportedContent"> <ul class="navbar-nav"> <li class="nav-item"> <a class="nav-link" href="#presentacion">Presentación</a> </li> <li class="nav-item"> <a class="nav-link" href="#proyectos">Proyectos</a> </li> <li class="nav-item"> <a class="nav-link" href="#festivales">Festivales</a> </li> <li class="nav-item"> <a class="nav-link" href="#formacion">Formación</a> </li> <li class="nav-item"> <a class="nav-link" href="#hoy">Hoy en Día</a> </li> <li class="nav-item"> <a class="nav-link" href="#forma_cto">Contacto</a> </li> <li class="nav-item"> <a class="nav-link" href="#ubi">Ubicación</a> </li> <li class="nav-item"> <a class="nav-link" href="videos.html">Videos</a> </li> </ul> </div> </div> </nav> 而且,为了在单击菜单时折叠菜单,我使用了这个 jquery: $('.nav-link, .navbar-brand').on('click', function() { $('.navbar-collapse').collapse('hide'); }); 问题是,这会将窗口向下移动多个像素(正是菜单可见时的高度,在本例中为 296 像素)。现在,我尝试添加一些滚动: $('.nav-link, .navbar-brand').on('click', function() { $(window).scrollTop($(window).scrollTop() - 296); $('.navbar-collapse').collapse('hide'); }); 而且,它会折叠,但不会向上滚动。即使我交换线路也不起作用(相同的行为,会折叠但不会向上滚动): $('.nav-link, .navbar-brand').on('click', function() { $('.navbar-collapse').collapse('hide'); $(window).scrollTop($(window).scrollTop() - 296); }); 而且,奇怪的是,如果我只调用scrollTop api,则向上滚动就完成了: $('.nav-link, .navbar-brand').on('click', function() { $(window).scrollTop($(window).scrollTop() - 296); }); 如何使导航栏折叠并使窗口向上滚动 296 像素? 预先感谢。 解决方案是将导航栏与正文“分离”,为此,我给正文添加了一些填充(与导航栏的高度一样多),并向导航栏添加了 css 值“position:固定”(以及其他值): body { padding-top: 56px; } .navbar { position: fixed; top: 0; right: 0; left: 0; z-index: 1030; } jquery 保持不变(如乞讨中所示): $('.nav-link, .navbar-brand').on('click', function() { $('.navbar-collapse').collapse('hide'); }); 我希望这对将来的人有帮助。 干杯!!!

回答 1 投票 0

如何导入THREE.InfiniteGridHelper

当尝试使用 THREE.InfiniteGridHelper 时,似乎没有办法导入不会生成错误的代码。即使复制和粘贴代码也不起作用。 目前我有

回答 1 投票 0

R 中的字符串在 JS() 中作为 HTML

我正在尝试创建一个数据表对象,其中每行都有一个子表。 我遵循谢益辉给出的子行示例的格式。 该示例展示了如何传递一个简单的字符串,...

回答 1 投票 0

重命名闪亮仪表板数据表中的列

我的 Shiny 应用程序中有一个数据表。默认情况下,列名是数据集的列名。 我想更改显示的列名称,而不接触数据集本身。 我发现...

回答 2 投票 0

删除数据表中的“显示条目”

如何从 R 中的 DT 包中删除数据表下方的“显示条目”信息? 我知道下面的解决方案,但我不知道如何使它们与 rmarkdow 一起使用时工作......

回答 2 投票 0

两个浏览器窗口之间的通信:弹出窗口和父窗口[关闭]

嗨我有一个父窗口,让saz M,单击M中的按钮时,会打开一个弹出窗口。当在弹出窗口中选择某个选项并单击“确定”按钮时,弹出窗口应关闭并在...

回答 1 投票 0

点击图像全屏 点击图像全屏。

点击图像全屏。 我想在用户点击图像时使图像全屏显示,只需... <html> <head> <title> Image Full-Screen On Click. </title> </head> <body> <div> 我想在用户点击图像时使图像全屏显示,就这么简单,我在网上搜索没有得到正确的答案,因为我不是制作自己的java脚本函数来做到这一点的专家,所以哪个是最好的办法。 并请提供示例(如果有)。 这是我的快速解决方案(不需要 CSS,但如果需要,您可以调整它)。 我在我的网站上使用这个,效果很好。 $('img[data-enlargeable]').addClass('img-enlargeable').click(function() { var src = $(this).attr('src'); var modal; function removeModal() { modal.remove(); $('body').off('keyup.modal-close'); } modal = $('<div>').css({ background: 'RGBA(0,0,0,.5) url(' + src + ') no-repeat center', backgroundSize: 'contain', width: '100%', height: '100%', position: 'fixed', zIndex: '10000', top: '0', left: '0', cursor: 'zoom-out' }).click(function() { removeModal(); }).appendTo('body'); //handling ESC $('body').on('keyup.modal-close', function(e) { if (e.key === 'Escape') { removeModal(); } }); }); <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <img data-enlargeable width="100" style="cursor: zoom-in" src="https://upload.wikimedia.org/wikipedia/commons/3/39/Lichtenstein_img_processing_test.png" /> 给出如下的html <html> <head> <title>Image Full-Screen On Click.</title> <script src="http://code.jquery.com/jquery-1.9.1.js"></script> </head> <body> <input id="clickbutton" type="button" value="Click" onclick="showimage()" /> </body> </html> 编写 Javascript 函数 <script type="text/javascript"> function showimage() { $("body").css("background-image","url('images/test.png')"); // Onclick of button the background image of body will be test here. Give the image path in url $('#clickbutton').hide(); //This will hide the button specified in html } </script> 或者,您可以使用 <div> 将 position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: url('image.jpg') no-repeat center; background-size: cover; 弹出到 DOM 中,这将为您的图像提供一个有效的全屏灯箱。 好吧,朋友,您需要的第一件事就是在您的页面上单击图像。您可以使用 jQuery 对任何您能想象到 CSS 选择器的 DOM 元素进行编程! 如果是我,我会做以下事情: <html> <head> <title>My Full-Screen Image Clicker</title> <script src = "Scripts/jquery-2.1.4.min.js"></script> <script> $(document).ready(function(){ //your code for stuff should go here $('#Fullscreen').css('height', $(document).outerWidth() + 'px'); //for when you click on an image $('.myImg').click(function(){ var src = $(this).attr('src'); //get the source attribute of the clicked image $('#Fullscreen img').attr('src', src); //assign it to the tag for your fullscreen div $('#Fullscreen').fadeIn(); }); $('#Fullscreen').click(function(){ $(this).fadeOut(); //this will hide the fullscreen div if you click away from the image. }); }); </script> <style> #MainImages { width: 100%; height: 800px; } #MainImages img { cursor: pointer; height: 70%; } #Fullscreen { width: 100%; display: none; position:fixed; top:0; right:0; bottom:0; left:0; /* I made a 50% opacity black tile background for this div so it would seem more... modal-y*/ background: transparent url('../Images/bgTile_black50.png') repeat; } #Fullscreen img { display: block; height: 100%; margin: 0 auto; } </style> </head> <body> <div id="MainImages"> <img src="Images/img.jpg" alt="" class="myImg" /> </div> <div id="Fullscreen"> <img src="" alt="" /> </div> </body> </html> 我也为你整理了一些小提琴:http://jsfiddle.net/wxj4c6yj/1/ 希望这对您有帮助。 $("img").on("click", function () { this.requestFullscreen(); });

回答 5 投票 0

在 2D Javascript 数组中搜索值索引

我正在尝试编写一个 jQuery,它将在 7x7 2D 数组中查找特定值的索引。 因此,如果我要查找的值是 0,那么我需要该函数来搜索 2D 数组,一旦它......

回答 7 投票 0

如何通过使用 jQuery 单击来更改单元格颜色?

我很难解决这个问题,因为我不是前端程序员,我有一个表格,行是我的客户,列是一年中的十二个月,每个单元格都有只需一张支票...

回答 3 投票 0

在 jQuery 中切换 2 个类的最简单方法

如果我有 .A 类和 .B 类,并且想在单击按钮时在它们之间切换,那么 jQuery 中有什么好的解决方案呢?我仍然不明白toggleClass() 是如何工作的。 有内联解决方案吗...

回答 7 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.