我是Web开发的新手,几周前才开始使用Django。在我的第一个项目中,我想做一个小公式来获得标准化的句子。我现在想知道是否有一种不错的方法来获得这样的东西。到目前为止,我的工作是:
我想要达到的目标是这样的:
您对如何获得这样的东西有一些建议吗?我的第一次尝试看起来像这样:
<p>
<select>
<option></option>
<option>Der</option>
<option>Die</option>
<option>Das</option>
</select>
<input placeholder="<Input1>"/>
<select >
<option></option>
<option>muss</option>
<option>soll</option>
<option>kann</option>
</select>
<table style="display:inline;" >
<tr>
<td colspan="2">
<div>----</div>
</td>
</tr>
<tr>
<td>
<input placeholder="<Input2>"/>
<div style="display:inline;">fixed text</div>
</td>
</tr>
<tr>
<td colspan="2">
fixed text
</td>
</tr>
</table>
<input placeholder="<Input3>"/>
<input placeholder="<Input4>"/>
对于样条曲线,我可以使用jquery.html-svg-connect.js,但也许你们知道更好的方法? =)
谢谢!