gpt4 book ai didi

javascript - MVC中如何通过jquery将弹出窗口的值传递到父窗口

转载 作者:行者123 更新时间:2023-12-02 20:15:01 24 4
gpt4 key购买 nike

我的 View 页面中有三个按钮,分别是“Button1”“Button2”“Button3”,并且我有三个对应的文本框每个按钮都显示 "TextBox1","TextBox2" & "TextBox3" 。单击任何一个按钮时,我都可以打开一个弹出窗口。现在我想从 POP up View 将一些值传递到父 View ,并将该值传递到与正在单击的按钮关联的 TextBox。我该怎么做?

编辑

<input type="button" value="Buuton1" id="Button1" style="width:100px;font-family:Verdana; font-size:9px; onclick="window.open( '<%= Url.Action( "Popup", "Home" ) %>');" /> 
<input type="button" value="Button2" id="Button2" style="width:100px;font-family:Verdana; font-size:9px;" onclick="window.open( '<%= Url.Action( "Popup", "Home" ) %>');" />
<input type="button" value="Button3" id="Button3" style="width:100px;font-family:Verdana; font-size:9px;" onclick="window.open( '<%= Url.Action( "Popup", "Home" ) %>');" />

最佳答案

给文本框一个ID(例如textBox1),然后尝试这个..这是一个简单的JavaScript。
为此,您不需要 jQuery。

window.opener.document["nameForm"].getElementById("textBox1 ").value = "your some values will go here"

关于javascript - MVC中如何通过jquery将弹出窗口的值传递到父窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6422958/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com