drsrq26482 2014-03-10 15:41
浏览 303
已采纳

在php中回显的html <a>标签中执行javascript弹出窗口

the flow is: a php page calls an ajax function that displays a list of user in a table without refreshing the pages. in this table, i put a delete and edit link. I have no problem with the delete link however, i'm stuck at the edit link.

what I'm trying to do is, when a user click edit link, there will appear a popup window, there, they can update the details of the user, but it appears that my popup window is not appearing.

the javascript function is:

<script type="text/javascript">
function newWindow(url) { 
var x,y;
x = screen.width-35;
y = screen.height-30;
var win =       window.open(url,'glossaryWindow','toolbar=no,directories=no,width=500,height=500'+
        'screenX=0,screenY=0,top=0,left=0,location=no,status=no,scrollbars=no,resize=yes,menubar=no');
    }

i put the function at the top of the page.

this is the php code to call java function in html tag

echo "<td>" . '<a href="javascript: newWindow("/test/HTMLPages/popup_update_user.html")">edit</a>' . "</td>";

is it possible??

i checked it its my URL that wrong, but that is not the problem. the popup does not appear at all. i need advise on this matter.

UPDATE:

this is the correct code for calling javascript in tag within php:

 <?php
    echo "<td>" . "<a href=\"#\" onclick=\"newWindow('popup_update_user.html')\">edit</a>". "</td>"; ?>

:D

  • 写回答

1条回答 默认 最新

  • douji8017 2014-03-10 15:59
    关注

    The problem is that in the echo you are opening and closing the statement before calling the javascript function.

    And don't call the function in the "href", call it from "onclick".

    Try this:

    echo "<td> <a href=\"#\" onclick=\"newWindow('/test/HTMLPages/popup_update_user.html')\">edit</a></td>";
    

    EDIT: Working example

    <!DOCTYPE html>
    <html>
        <head>
            <script type="text/javascript">
                function newWindow(url) { 
                var x,y;
                x = screen.width-35;
                y = screen.height-30;
                var win =       window.open(url,'glossaryWindow','toolbar=no,directories=no,width=500,height=500'+
                        'screenX=0,screenY=0,top=0,left=0,location=no,status=no,scrollbars=no,resize=yes,menubar=no');
                    }
        </script>
        </head>
        <body>
            <table>
                <tr>
                    <?php
                    echo "<td> <a href=\"#\" onclick=\"newWindow('/test/HTMLPages/popup_update_user.html')\">edit</a></td>";
                    ?>
                </tr>
            </table>
        </body>
    </html>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?