scala Liftweb - 检索标签的内容
scala Liftweb - retrieving content of tag
我是电梯新手,所以问题是:
我有一个 div 和一个文本区域。我也有一个按钮,我想在不刷新页面的情况下获取#code textarea 内容(实际上,这并不重要)
我尝试了很多谷歌搜索,但没有 4 页的答案:C
请帮助!
<div lift="Snippet.button">
<textarea id="code">
xdxdxdxdxd xhere goes the code
</textarea>
<br />
<button class="btn btn-default" id="but">
Submit
</button>
<input type="hidden" id="hidden">
</div>
经过几个小时自己解析了很多网站后,我发现了一些东西:
JE.ValById("#code")
- returns textarea 或任何输入的值
JsCmds.SetValById("#code", "test value")
- 将 vlaue 设置为找到的元素
我是电梯新手,所以问题是:
我有一个 div 和一个文本区域。我也有一个按钮,我想在不刷新页面的情况下获取#code textarea 内容(实际上,这并不重要)
我尝试了很多谷歌搜索,但没有 4 页的答案:C
请帮助!
<div lift="Snippet.button">
<textarea id="code">
xdxdxdxdxd xhere goes the code
</textarea>
<br />
<button class="btn btn-default" id="but">
Submit
</button>
<input type="hidden" id="hidden">
</div>
经过几个小时自己解析了很多网站后,我发现了一些东西:
JE.ValById("#code")
- returns textarea 或任何输入的值
JsCmds.SetValById("#code", "test value")
- 将 vlaue 设置为找到的元素