jsp动态添加输入行

jsp动态添加输入行,第1张

动态添加输入行可以使用 javascript 就能够完成

<html>

<body>

<input type="button" value="add" onclick="add()"/>

<ul id="ul"><li><input type="text"/></li></ul>

</body>

</html>

<script>

function add(){

var ul = document.getElementById("ul")

var li = ul.firstChild.cloneNode(true)

ul.appendChild(li)

}

</script>

如上代码中使用的ul、li,如果使用 table 其实也是一样的。

JSP页面中用c标签遍历list,要显示数据的对象列表放到list中。

java代码:

1

request.setAttribute("list", yourList)

jsp代码:

<c:forEach var="user" items="${list}"> User Name: ${user.username}Age: ${user.age}</c:forEach>

注意在JSP中引入jstl的core标签,


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/7917104.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-11
下一篇 2023-04-11

发表评论

登录后才能评论

评论列表(0条)

保存