我使用的是Ruby on Railways
3.1.0
和jquery-rails
gem。 我愿将一次j Query活动(也许我可以使用live
Function...)约束在“超文本div
标签上,以便我能够检查其内容的变化,如果是的话(即如果在“div
tag”上添加新的代码的话),则在另一个“超文本”上形成一个“硬码>div。
在我看来,这就是:
<div id="div_content_1"></div>
<div id="div_content_2"></div>
I would like to add
emove an "Hello!" text message inside the div
with id="div_content_2"
eachtime the div
content with id="div_content_1"
changes (in my case, when an HTML input
field is added to that div
tag - read the example that follows). For example (in the "add" case), when the div
with id="div_content_1"
changes like this
<div id="div_content_1">
<!-- The following input tag was just added -->
<input ... />
</div>
我愿努力在<条码>div和id=“div_content_2”
中取得以下产出:
<div id="div_content_2">
<p>
Hello!
</p>
</div>
www.un.org/Depts/DGACM/index_spanish.htm 我怎样做?
input
。 <代码>div with id=“div_content_1>
- 我想为了我的习惯目的,可以在同一页(div
with id="div_content_2>
)上订购这些选择,是为了使I计划进行的分类过程成为可能。