-1

我想将表单值临时保存在 jquery 中(而不是数据库中),然后在同一页面上回显该值。

我有一个页面,其中有一个名为“添加项目”的按钮,当用户单击“添加项目”按钮时,一个表单会出现在弹出模式中。当在弹出模式上选择保存按钮时,弹出模式中的值将存储在 jquery 变量中。然后,这些变量的值将显示在我一开始隐藏的 div 上。

我不知道如何在 div 中显示值,这就是我正在做的事情:

<div id="items">
</div>

$('#items').hide();
$('#popupmodal').click(function(){

$('#savebutton').click(function() {
var price = $('#price').val();
alert(price);

我想在 div“项目”中显示弹出模式的价格。

4

1 回答 1

4

您可以使用htmljQuery 的方法来设置元素内容:

$('#items').html(price);

http://api.jquery.com/html/

如果要转义 html,请text改用:

$('#items').text(price);

http://api.jquery.com/text/

不要忘记展示您的物品:

$('#items').show();
于 2013-01-17T16:23:37.223 回答