如何在 jquery 中使用 for 循环在 MVC4 应用程序的隐藏输入字段中编辑和存储多个编辑值
这是我的jQuery
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('p').click(function () {
var textbox = $('<input id="Text1" type="text" name="Name" />')
var oldText = $(this).text();
$(this).replaceWith(textbox);
textbox.blur(function () {
var newValue = $(this).val();
var listItems = $('.listItem');
listItems.each(function () {
$(this).replaceWith(
$('<p/>', { text: newValue })
.after(
$('<input />', { type: 'hidden', name: 'Name', value: newValue })
)
);
});
});
textbox.val(oldText);
});
});
</script>