我正在一个配方页面上工作的配方网站(除了这个问题几乎已经完成),我有配方服务输入字段和配方成分。
我的问题是使用jquery我想要在服务更改时动态更改配方成分
我已经看到了类似的封闭威胁,但它对我没有帮助 我的确切代码看起来像这样 Serving: <input type="text" name="serving" class="serving" value="5"/> persons
<h3>ingredients</h3>
<ul class="ingredients">
<li class="ingredient">
<span class="amount">1</span> cups
<span class="name"><a href="http://www.mysite.com/ingredient/yogurt/">yogurt</a></span>
</li>
<li class="ingredient">
<span class="amount">2</span> tbsp
<span class="name"><a href="http://www.mysite.com/ingredient/yogurt/">chillies</a></span>
</li>
<li class="ingredient">
<span class="amount">3</span> pieces
<span class="name"><a href="http://www.mysite.com/ingredient/yogurt/">butter</a></span>
</li>
</ul>
我非常感谢任何帮助我完成我的待定网站
此致