showModalDialog传参,后台php如何接收

WBOY
Release: 2016-06-23 14:22:30
Original
997 people have browsed it

php showModalDialog 传参 $_GET

如题所示,点击一个链接,调用window.showModalDialog,如果要传递一个参数,那么php后台该怎么接收
例如:
var uri = "houtai.php?workId = " + workId;
var answer = window.showModalDialog(uri,'','scroll:no;center=yes;help=no;dialogWidth=800px;dialogHeight=600px;','');

这样写行不行。如果可以,houtai.php怎么得到参数workId。如果不可以,应该怎么把参数workId传递给hotai.php。谢谢。

注:我在houtai.php里面用了  $workId = $_GET['workId'];  得不到参数workId。
    如果跳出窗口改成 window.open,倒是能够得到,但是要求必须是showModalDialog,模态的。

回复讨论(解决方案)

可以的!
在houtai.php里面用了  $workId = $_GET['workId'];  得不到参数workId。
是不应该得到,你知道问题在哪吗?
你用 $_GET['workId_'] 看看是否就得到了呢?

原来你的 var uri = "houtai.php?workId = " + workId;
画蛇添足的多写了空格!

多谢版主,果然如此

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template