本文介绍了如何在弹出窗口中提交表单?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 使用Javascript,我在弹出窗口中打开一个基于网络的网址。 MyWin1 = Window.Open(url,mywindow) 在弹出窗口的url中有一个表单(form1),我需要 提交该表单。 怎么做我从当前窗口的javascript中提交了form1吗? 谢谢。 - V 解决方案 任何人都可以在新手上为新手推荐新闻组,我可以在这里询问我的问题。 谢谢。 任何人都可以推荐一个javascript的新闻组给新手我可以在这里询问我的问题。 这个很好。 问候, Erwin Moller > 谢谢。 - ======================== ==== Erwin Moller 现在放弃googlegroups的所有帖子。 为什么? http://improve-usenet.org/ = =========================== 目前为止确定。 将它提交到哪里? 如果你的弹出窗口有一个表单,它也可以提交它,就像所有其他 页面一样。 如果你的弹出窗口中有类似下面的代码,你应该 be罚款: < form action =" somescript.php" method =" Post> 您的姓名:< input type =" text" name =" firstname"> < input type =" submit" value ="发布我> < / form> 如果您要问:如何将表单发布到网页上 ;答案是 简单:你不是。 表格不是发送到HTML文档,而是发送到某个服务器上的脚本 (在上面的例子中命名为''somescript.php')能够收到 forminformation。 但是,你可以转发信息填写其他窗口 (使用JavaScript)。 这就是你想要的东西吗? 此致, Erwin Moller - ======================== ==== Erwin Moller 现在放弃googlegroups的所有帖子。 为什么? http://improve-usenet.org/ = =========================== using Javascript, I am opening a web-based url in a popup window.MyWin1=Window.Open(url, "mywindow")There is a form (form1) in the url in that popup window, I need tosubmit that form.How do I submit that form1 from the javascript from my current window?Thanks.--V 解决方案could anyone recommend a newsgroup on javascript for newbies where I canask my queries.thanks.could anyone recommend a newsgroup on javascript for newbies where I canask my queries.This one is fine.Regards,Erwin Moller--============================Erwin MollerNow dropping all postings from googlegroups.Why? http://improve-usenet.org/============================OK so far.Submit it to where?If your popupwindow has a form, it can also submit it, just as all otherpages.If you have something like the following code in your popup, you shouldbe fine:<form action="somescript.php" method="Post>Your name: <input type="text" name="firstname"><input type="submit" value="Post me"></form>If you are asking: "How do I post my form to a webpage" the answer issimple: You don''t.Forms are NOT send to a HTML document, but to a script on some server(named ''somescript.php'' in my above example) that is able to receive theforminformation.However, you CAN tranfer the information filled in to some other window(using JavaScript).Is THAT what you are after?Regards,Erwin Moller--============================Erwin MollerNow dropping all postings from googlegroups.Why? http://improve-usenet.org/============================ 这篇关于如何在弹出窗口中提交表单?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
07-24 04:10