我使用可排序的插件获得了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。 有人可以帮助我吗?
答案 0 :(得分:2)
你应该写:
$("input[name='artNr']").val(regel);