- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个模板,其中包含一个表单,该表单需要接受路线上停靠点的用户完整地址。一条路线可以有多个站点。
我创建了一个名为“StopView”的 View ,它与一个名为“Stop”的模型关联。
以下是 StopView 和添加新 Stop 的代码:
StopView = Backbone.View.extend({
el:"#stops",
template: stopTpl,
initialize: function() {
this.o = StopsArray.length;
//console.log(this.o);
},
render: function() {
$(this.el).html(_.template(this.template));
return this;
},
events: {
// "keypress #test": "submit",
"click #another": "another",
"typeahead:selected .typeahead": "onSelected"
},
another: function() {
StopsArray.add(this.model);
下面是创建新 View 并附加模板的代码,它是名为 AppView 的父 View 的一部分。它发生在(停靠点)集合发生变化时:
addStop: function ()
{
var theStop = new StopView({model:new Stop()});
if(StopsArray.length==1)
{
theStop.render();
}
else
{
theStop.$el.unbind()
theStop.$el.append(_.template(theStop.template));
theStop.setElement('#stops');
}
现在,我尝试将文本应用于 #stops 标记内表单中的所有值。但是当我这样做时,它适用于两组输入,而不仅仅是当前停止 View 的输入。
基本上,在附加时,我需要将 View 的范围转移到附加的新 html,而不是所有 html(包括从第一个 View 呈现的内容)。
我不确定,但我从 todo.js 示例中读到,Backbone 应该知道您所在的 Dom 元素,即使它们是相同的: http://documentcloud.github.io/backbone/docs/todos.html#section-16
编辑:是的,我在获取/更改输入字段的值时使用“this.$('#domelement') 以确保它与该 View 关联。
Edit2:基本上 html 看起来像:
<div id="stops><form id="test_form">content</form></div>
Edit3:这是停靠点模板和索引文件
<script type="text/javascript" src="libs/typeahead_function.js"></script>
<form id="test_form" class="form-group form-horizontal form-sqaure">
<div class="row-fluid">
<div class="col-md-7" style="float:left">
<div class="webres-stop panel panel-default">
<div class="panel-heading first-heading">
<a data-toggle="collapse" data-parent="#accordion" href="#first<% print(StopsArray.length) %>">
<h2>Stop <% print(StopsArray.length) %> <button type="button" class="btn btn-square" id="another" style="float:right">Add Stop</button></h2>
</a>
</div>
<!-- This is the actual stop content -->
<div id="first<% print(StopsArray.length) %>" class="panel-collapse collapse in">
<div class="panel-body">
<div class="form-group">
<label for="address" class="col-sm-4 control-label">Address: </label>
<div class="col-lg-7">
<input id="test" name="address" type="text" class="address typeahead form-control form-control-square" placeholder="Enter an address">
</div>
</div>
<div id="datetime" class="form-group">
<label for="datetime" class="col-sm-4 control-label">Date and Time: </label>
<div class="col-lg-7">
<input class="form-control form-control-square" type="text" name="datetime">
</div>
</div>
</div>
</div>
<div class="panel-group" id="accordion">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#second<% print(StopsArray.length) %>">
Address Details
</a>
</h4>
</div>
<div id="second<% print(StopsArray.length) %>" class="panel-collapse collapse" data-target>
<div class="panel-body">
<div class="row">
<div class="form-group col-lg-6">
<label for="address">Street Number: </label>
<input class="form-control form-control-square" type="text" id="StreetNumber" name="StreetNumber">
</div>
<div class="form-group col-lg-6">
<label for="address">Street: </label>
<input class="form-control form-control-square" type="text" name="StreetName">
</div>
</div>
<div class="row">
<div class="form-group col-lg-6">
<label for="address">City: </label>
<input class="form-control form-control-square" type="text" name="City">
</div>
<div class="form-group col-lg-6">
<label for="address">State: </label>
<input class="form-control form-control-square" type="text" name="State">
</div>
</div>
<div class="row">
<div class="form-group col-lg-6">
<label for="address">Postal Code: </label>
<input class="form-control form-control-square" type="text" name="Zipcode">
</div>
<div class="form-group col-lg-6">
<label for="address">County: </label>
<input class="form-control form-control-square" type="text" name="Country">
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#third<% print(StopsArray.length) %>">
Airport Information
</a>
</h4>
</div>
<div id="third<% print(StopsArray.length) %>" class="panel-collapse collapse" data-target>
<div class="panel-body">
<div class="row">
<div class="form-group col-lg-2">
<label for="address">Airline: </label>
<input class="form-control form-control-square" type="text" name="airline">
</div>
<div class="form-group col-lg-10">
<label for="address">Flight Number: </label>
<input class="form-control form-control-square" type="text" name="flight_number">
</div>
<div class="row">
<div class="form-group col-lg-6">
<label for="address">Flight Time: </label>
<input class="form-control form-control-square" type="text" name="flight_time">
</div>
<div class="form-group col-lg-6">
<label for="address">Terminal: </label>
<input class="form-control form-control-square" type="text" name="terminal">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
<script type="text/javascript">
$(function () {
$('#datetime').datetimepicker();
});
<body style="background-color:#3366CC">
<div class="container">
<div class="row">
<div class="col-md-12">
<div id="header">
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div id="content">
</div>
<br /><br />
<div class="panel-group" id="accordion">
<div id="stops"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div id="footer">
</div>
</div>
</div>
</div>
</body>
</html>
最佳答案
您已对 StopView
进行硬编码,使其 ID 为 stops
:
StopView = Backbone.View.extend({
el:"#stops",
...
});
由于您似乎是在内存中动态创建这些 View ,因此您只需使用元素类型(例如 div
)即可。您还可以使用以下任意一项来“标记”以供以后引用:
StopView = Backbone.View.extend({
el:"div",
className: "stops",
id: "stop1"
...
});
请记住,您不需要使用上述任何内容,Backbone 将默认将 View 元素类型设置为“div”,不带 id 或类名称。
关于javascript - 相对于 View 的 Dom 的主干和范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21941259/
我不能解决这个问题。和标题说的差不多…… 如果其他两个范围/列中有“否”,我如何获得范围或列的平均值? 换句话说,我想计算 A 列的平均值,并且我有两列询问是/否问题(B 列和 C 列)。我只希望 B
我知道 python 2to3 将所有 xrange 更改为 range 我没有发现任何问题。我的问题是关于它如何将 range(...) 更改为 list(range(...)) :它是愚蠢的,只是
我有一个 Primefaces JSF 项目,并且我的 Bean 注释有以下内容: @Named("reportTabBean") @SessionScoped public class Report
在 rails3 中,我在模型中制作了相同的范围。例如 class Common ?" , at) } end 我想将公共(public)范围拆分为 lib 中的模块。所以我试试这个。 module
我需要在另一个 View 范围 bean 中使用保存在 View 范围 bean 中的一些数据。 @ManagedBean @ViewScoped public class Attivita impl
为什么下面的代码输出4?谁能给我推荐一篇好文章来深入学习 javascript 范围。 这段代码返回4,但我不明白为什么? (function f(){ return f(); functio
我有一个与此结构类似的脚本 $(function(){ var someVariable; function doSomething(){ //here } $('#som
我刚刚开始学习 Jquery,但这些示例对我帮助不大...... 现在,以下代码发生的情况是,我有 4 个表单,我使用每个表单的链接在它们之间进行切换。但我不知道如何在第一个函数中获取变量“postO
为什么当我这样做时: function Dog(){ this.firstName = 'scrappy'; } Dog.firstName 未定义? 但是我可以这样做: Dog.firstNa
我想打印文本文件 text.txt 的选定部分,其中包含: tickme 1.1(no.3) lesson1-bases lesson2-advancedfurther para:using the
我正在编写一些 JavaScript 代码。我对这个关键字有点困惑。如何在 dataReceivedHandler 函数中访问 logger 变量? MyClass: { logger: nu
我有这个代码: Public Sub test() Dim Tgt As Range Set Tgt = Range("A1") End Sub 我想更改当前为“A1”的 Tgt 的引
我正忙于此工作,以为我会把它放在我们那里。 该数字必须是最多3个单位和最多5个小数位的数字,等等。 有效的 999.99999 99.9 9 0.99999 0 无效的 -0.1 999.123456
覆盖代码时: @Override public void open(ExecutionContext executionContext) { super.open(executio
我想使用 preg_match 来匹配数字 1 - 21。我如何使用 preg_match 来做到这一点?如果数字大于 21,我不想匹配任何东西。 example preg_match('([0-9]
根据docs range函数有四种形式: (range) 0 - 无穷大 (range end) 0 - 结束 (range start end)开始 - 结束 (range start end st
我知道有一个UISlider,但是有人已经制作了RangeSlider(用两个拇指吗?)或者知道如何扩展 uislider? 最佳答案 我认为你不能直接扩展 UISlider,你可能需要扩展 UICo
我正在尝试将范围转换为列表。 nums = [] for x in range (9000, 9004): nums.append(x) print nums 输出 [9000] [9
请注意:此问题是由于在运行我的修饰方法时使用了GraphQL解析器。这意味着this的范围为undefined。但是,该问题的基础知识对于装饰者遇到问题的任何人都是有用的。 这是我想使用的基本装饰器(
我正在尝试创建一个工具来从网页上抓取信息(是的,我有权限)。 到目前为止,我一直在使用 Node.js 结合 requests 和 Cheerio 来拉取页面,然后根据 CSS 选择器查找信息。我已经
我是一名优秀的程序员,十分优秀!