Backbone按ID删除行

我正在尝试使用Backbone删除表中的一行。 我正在为这个项目使用Rails 4和backbone-on-rails gem。 我正在使用addEntryevent在我的Movies表中添加行。 这会添加一个包含id,movie_title和user_id的新行。 索引视图 class Movieseat.Views.MovieseatsIndex extends Backbone.View template: JST[‘movieseats/index’] initialize: -> @collection.on(‘update’, @render, this) @collection.on(‘add’, @appendEntry, this) render: -> $(@el).html(@template()) @collection.each(@appendEntry) this events: -> “click li”: “addEntry” “click .remove”: “removeEntry” addEntry: (e) -> movie_title = $(e.target).text() @collection.create title: movie_title removeEntry: (e) -> thisid = @$(e.currentTarget).closest(‘div’).data(‘id’) console.log thisid @collection.remove thisid appendEntry: (entry) […]

Jquery日期选择器无法通过php保存在数据库中

这是我的总代码,但问题是我无法在数据库原因日期选择器中插入数据。没有日期选择器它在数据库中成功插入,当总表为空时,它第一次成功插入,但其他时间它没有插入任何东西。 请任何人帮助我? CREATE TABLE IF NOT EXISTS `teacher` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `father_name` varchar(50) NOT NULL, `mother_name` varchar(50) NOT NULL, `address` text NOT NULL, `sex` varchar(50) NOT NULL, `position` varchar(150) NOT NULL, `subject` varchar(150) NOT NULL, `sallary` int(50) NOT NULL, `dtime` date NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY […]

如何创建无限的iscroll?

我在我的网页上创建了iScroll,它运行得很好。 但现在我想让它作为无限的iscroll工作,但我不知道该怎么做。 我的iscroll代码是: myCarousel_up = new iScroll(‘scroller_upCarousel’, { snap: true, momentum: false, hScrollbar: false, vScrollbar: false, desktopCompatibility:true, onScrollEnd: function () { } }); 谁能帮我?

如何最好地确定元素/节点通过DOM的距离?

我试图找出一个特定元素在文档中的距离,理想情况是百分比。 具体来说,我有一个很长的XHTML文档(实际上它是ePub文件的一个组件),我在其中的某个地方有一个hello 。 如果这是文档中的第一个元素,则“百分比通过”值将为0.如果它正好在文档的中间,则为50。 它不一定是顶层,它可能嵌套在其他节点中。 我考虑使用类似递归的$(node).contents().each(function(){…}); 虽然我想知道这可能是一个缓慢的方法吗? 文档是文本,它不太可能包含图像,或者文本大小#where_am_i很大,所以只需找出文本#where_am_i距离就可以了。 先感谢您!

如何添加两个不同样式的jqgrid

我的页面和两个网格在这里…第一个网格具有列标题的这种样式 .ui-jqgrid table.ui-jqgrid-htable { height:60px; } 这是在table1中,而在table2中有我的其他网格,但没有样式 加载页面时,第二个网格获取第一个网格的样式,列标题大小为60 问题是什么? pd:对不起我的英语

jquery在视口中运行一次.one()

我正在制作一个进度条,并希望它在视口中播放。 我得到了这个工作,但代码现在每次执行,我需要它只运行一次。 因为它现在创建了多个进度条。 ;-)以下代码用于Joomla扩展。 (function ($) { $(document).ready(function() { // Function that checks if it is in view. $(“id ?>”).waypoint(function() { // Function that makes sure it only runs once. // ———–I need to use .one() here but how? // The location of the progressbar code for now lets put a alert in. alert(“run only […]

如何为canvas周围的箭头设置动画

我正在尝试使用JQuery在canvas中设置箭头动画。 箭头应该随机旋转在canvas上移动,但我不知道该怎么做。 有谁知道怎么做?

.scrollLeft()方法不起作用

我有一些jQuery脚本的页面。 一切都很好,除了IE。 我无法解决滚动问题的位置。 整页是一个长水平页面。 每当我更改PAGE(页面的标识号)时,web都应向左或向右滚动。 以下是我处理上一个按钮操作的一些代码: $(‘#previous’).click(function() { var width = $(window).width(); var leftOffset = $(document, window).scrollLeft(); var browser = get_browser(); hidePaging(); $((browser == “Firefox” || browser == “msie”) ? “html” : “body”).animate({ scrollLeft: page > 2 ? width * 2 : leftOffset – width }, 1000, function () { page = page > 2 […]

jQuery.expandingTextarea不在表中工作

运行jQuery插件bgrins / ExpandingTextareas ( github )时,100%-width表中的标签无法按预期工作。 特别是,textarea不会根据需要垂直扩展,并且textarea的水平位置具有不正确的偏移,其随着输入文本而变化。 这是一个说明问题的示例jsFiddle 。 我还在GitHub上打开了相应的问题#33 。 关于为什么会发生这种情况以及如何解决这个问题的任何想法都将是最受欢迎的。

事件的不需要的传播在spring应用程序中使用jquery单击

在我的spring项目中,我有一个仪表板页面,我可以在其中打开我的应用程序中的每个子页面,所有子页面都在jquery-ui对话框中打开,就像MDI类似Windows的应用程序。 我现在的问题是,在第一次点击任何链接(正常运行)之后,重复执行其他点击,导致显示多个窗口(但只有一个完全显示,所有其他只显示标题栏) )。 处理事件并打开jquery-ui对话框的代码是: $( ‘.dialog’ ).dialog({ autoOpen: false, closeOnEscape: true, closeText: “fechar”, height: 680, width: 1046, show: { effect: “fadeIn”, duration: 1000 }, hide: { effect: “fadeOut”, duration: 1000 }, close: function(){ console.log(‘remove dialog_div’); $(this).remove(); } }); function add_dialog(dialog_name) { console.log(‘=== add_dialog ===’); console.log(‘dialog_name = ‘+dialog_name); $(‘#container’).append(‘ ‘); var div = $(‘#’+dialog_name); return div; […]