Tag: jQuery的

jQuery的ajaxpost

是否可以在单击元素时使用POST方法提交ID? 我认为jQuery有一个内置的AJAX扇形…

使用jquery进入数组中的所有图像?

HTML The Magnet Source™ Magnet Tape 1/2″x 30″ Magnetic products. Tape 1/2″x 30″- Gives you a quick and easy way to add a magnet to lightweight craft projects. Easy as 1-2-3, cut to length, peel off adhesive liner and apply to craft project. It cuts easily with scissors. Know More VersaMark Watermark Ink Stamp Pad […]

我们如何使用Jquery删除html标签?

我们如何通过使用Jquery删除html标签,例如我们有这个html hello world 我想删除 标签并生成此输出 hello world

创建的新元素,在ready文档之后调用jquery方法不起作用

我有以下代码 $(document).ready(function() { // When change the value in select it will send id to controller in order to return the price of service. $(“.select-service”).change(function(){ var element_id = $(this).attr(‘id’); $.post(“/services/get_price_of”, { message: this.value }, function(data){ $(“#” + element_id).parent().find(“.price-input”).val(data); }) }); }); 该页面加载了一个选择,但我可以动态添加更多选择。 问题是,对于动态添加的所有选择,事件早期不起作用。 有人能帮我吗? 问候。 PD:抱歉我的英语不好。

点击外面并隐藏Div

当你点击文档时,我正在尝试做简单的隐藏div。 我似乎无法让它发挥作用。 我基本上希望在单击按钮时切换到div。 然后如果你点击其他任何地方(不在div上),它就会切换掉。 这是脚本: $(document).ready(function(){ $(“.slidingDiv”).hide(); $(“.show_hide”).show(); $(‘.show_hide’).click(function(){ $(‘.slidingDiv’).slideToggle(); $(document).one(function(){ $(‘.show_hide’).show(); }); }); }); 这是CSS(这是正确的CSS现在正确的JQuery下面!) .slidingDiv { background-color: #FFF; border:3px solid #000; border-radius:0 0 15px 15px; float:right; height:175px; padding:20px; position:relative; top:-18px; width:300px; z-index:100; display:none; } .show_hide { } 和HTML: Hello 任何帮助都是极好的。 这是我现在正在运行的整个事情,包括脚本: $(function(){ //jQuery(function($){ $(‘.show_hide’).click(function(e){ // <—-you missed the '.' here in your selector. […]

jQuery获取元素的属性’loop’

我尝试使用jquery 1.6.2获取div元素的属性 HTML JS $(‘#scroller’).attr(‘loop’) 上面的js总是返回undefined。 我尝试将jquery升级到1.6.4,然后相同的js返回单词’loop’。 此循环属性是保留属性吗? 我这样做是为了使用库来滚动文本.http://remysharp.com/2008/09/10/the-silky-smooth-marquee/

如何在polymer.dart组件中使用jquery访问shadow dow

在我的polymer.dart组件中,我想用jquery访问shadow dom。 在dart我可以像这样访问节点的id: $[“testname”].attributes[“id”] 要么 shadowRoot.querySelector(“#testname”).attributes[“id”] 这是如何用jquery完成的 context.callMethod(r’$’, [‘#testname’])[“id”] 显然不起作用。

如何从位置(x,y)获取谷歌地图v3上的位置(lat / lng)

我有(x,y) (event.pageX-$(“#map_canvas”).offset().left,event.pageY-$(“#map_canvas”).offset().top) 但如何获得(lat,lng) 谢谢

HTML列表 – 仅将addClass()应用于第一级LI元素(不是内部元素)

我有以下代码, $(‘.main-menu li:nth-child(3)’).addClass(“active”); 然而,哪个有效,HTML看起来像这样…… menu item menu item menu item menu item2 menu item2 menu item2 并且它将“活动”类添加到两个LI列表中,任何方式使它只添加一次? 谢谢

使用jQuery fadeIn()和fadeOut()隔行扫描背景图像

我使用以下function来制作具有淡入和淡出效果的图像幻灯片。 var project_photos = [‘image1.jpg’, ‘image2.jpg’, ‘image3.jpg’]; var project_photo_index = 0; function nextPhoto() { $(‘#background’).fadeOut(); $(‘#background’).css(‘background-image’, “url(‘images/” + project_photos[project_photo_index] + “‘)”); $(‘#background’).fadeIn(); timer = setTimeout(function() { if (project_photo_index+1 > project_photos.length) { project_photo_index = 0; } else { project_photo_index++; } nextPhoto(); }, 5000); } 但是,我想稍微调整一下这个函数来消除fadeOut()和fadeIn()之间的白色时​​刻。 我想要实现的是: 假设淡入和淡出时间为400ms,每个图像的显示时间为5s 图1显示在屏幕上0到5秒,开始从5到5.4逐渐淡出 图像2首先隐藏,从4.8s开始逐渐消失到5.2s(为了填补淡入和淡出之间的白色间隙),从5.2到10.2s保持不变,然后开始从10.2到10.6s逐渐淡出 图像3首先隐藏,从10.4秒开始逐渐消失到10.8秒,从10.8秒到15.8秒,然后从15.8秒开始逐渐消失到16.2秒 (图像1以类似的逻辑返回,永远循环直到计时器清除) 如何调整代码以使其按照描述工作?