如何获取 HTML 表单中的 javascript 值
我有 jquery 使用可排序插件。
我使用以下函数来获取值。
$(function() {
$( "#sortable" ).sortable({
placeholder: "ui-state-highlight"
});
});
function overzicht(){
var regel = '';
$('ul#sortable li').each(function(index) {
regel += $(this).attr('id').replace(/ /g, "") + ',';
});
}
<ul id="sortable">
<xsl:for-each select="//regels/item">
<li style="list-style:none; vertical-align:middle; min-height:50px" id="{veld[3]}" class="ui-state-default">
</li>
</xsl:for-each>
</ul>
如何在这样的 HTML 表单中获取“regel”值?
<form name="cartForm" method="post" action="edit_bestellijst.asp">
<input type="hidden" name="act" value="update" />
<input type="hidden" name="artNr" value="***regel values***)" />
</form>
我正在使用一点 XSL。 有人可以帮我吗?
I've got jquery using the sortable plug in.
I'm using the following function to get the values.
$(function() {
$( "#sortable" ).sortable({
placeholder: "ui-state-highlight"
});
});
function overzicht(){
var regel = '';
$('ul#sortable li').each(function(index) {
regel += $(this).attr('id').replace(/ /g, "") + ',';
});
}
<ul id="sortable">
<xsl:for-each select="//regels/item">
<li style="list-style:none; vertical-align:middle; min-height:50px" id="{veld[3]}" class="ui-state-default">
</li>
</xsl:for-each>
</ul>
How do I get the "regel" value in a HTML form like this?
<form name="cartForm" method="post" action="edit_bestellijst.asp">
<input type="hidden" name="act" value="update" />
<input type="hidden" name="artNr" value="***regel values***)" />
</form>
I'm using a bit XSL.
Can someone please help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在每个循环之后
你应该写:
after the each loop
you should write :