<div class="input" style="margin-top: 10px"> <input id="ididid" name="0" placeholder="请输入想找的宝贝" type="text"> <a href="/goodsdetails/{{ }}/"> <img src="/static/1_061.png"> </a> </div>如何在{{}}中使用提取到的字符串
时间: 2023-06-19 12:10:46 浏览: 54
Google-Site:使用HTML和CSS创建类似Google的搜索平台
您可以使用模板语言中的变量来替换 `{{}}` 中的字符串。假设您已经将需要提取的字符串存储在名为 `good_id` 的变量中,您可以这样编写代码:
```
<div class="input" style="margin-top: 10px">
<input id="ididid" name="0" placeholder="请输入想找的宝贝" type="text">
<a href="/goodsdetails/{{ good_id }}/">
<img src="/static/1_061.png">
</a>
</div>
```
这将在 `href` 属性中使用 `good_id` 变量的值。
阅读全文