如何将数据传递给创建二手div的弹出窗口

时间:2016-05-03 10:39:19

标签: javascript html css jsp popupwindow

我的页面中有名称和价格产品的表格。在行附近只有一个按钮"订单"。当我点击它时,我得到一个弹出窗口。我必须将我的名字和价格传递给这个弹出窗口。

<script type="text/javascript">
function show(state){
    document.getElementById('window').style.display = state;
    document.getElementById('wrap').style.display = state;
}
</script>

<div onclick="show('none')" id="wrap"></div>

<!-- Popup Window -->
<div id="window">
<img class="close" onclick="show('none')" src="/images/close.png">
<form   onsubmit="return checkForm(this)" action="/user/confirmOrder">
    <p>Address:</p>
    <input type="text" name="address">
    <p>Count:</p>
    <input type="text" id="count" name="count">
    <p id='err_count' class='error'></p>

    <input type="hidden" name="username" value="${pageContext.request.userPrincipal.name}">
    <br>
    NameProduct:
    <input type="text" id="nameProduct" name="nameProduct">
    <input type="text" id="priceProduct" name="priceProduct">
    <input type="submit" value="Make order">
</form>
</div>



<table border="2px">
<tr>
<th>Name</th>
<th>Price</th>
</tr>
<c:forEach items="${productList}" var="product" varStatus="status">
<tr>
    <td> ${product.getProductName()}</td>
    <input type="hidden" id="productName" name="productName"     value=${product.getProductName()}>
    <td>${product.getPrice()}</td>
    <input type="hidden" id="productPrice" name="productPrice" value=${product.getPrice()}>
    <td>
       <button class="myButton" onclick="show('block')">Make Order</button>
    </td>
</tr>

如何传递到弹出窗口名称和价格选择行?早期我使用window.open()并且它有效,但现在我使用div来创建弹出窗口。

1 个答案:

答案 0 :(得分:1)

以这种方式创建弹出窗口

var childWindow=window.open("windowUrl");

然后,您需要在子窗口中创建一个设置名称,价格和所选行的函数,然后在父窗口中以这种方式调用该函数。

childWindow.setterFunction(name,price,chosenRow);

或者,您可以在子窗口中为名称,价格和所选行创建全局变量(不推荐),然后像这样在父窗口中设置它们

childWindow.Name =name;
childWindow.Price = price;
childWindow.chosenRow = chosenRow;