错误点击按钮代码错误?

时间:2015-05-11 21:05:20

标签: php

按钮上有一个onclick,但它无法正常工作。

<a href="javascript:void(0)" class="button" onclick=\'websiteopen("'.$site->page_id.'","fb"), PopupCenter("http://nullrefer.com/?'.$site->facebook.'","Website", "'.$site->id.'", "'.$site->title.'", 1000,500,"fb");jqxAlert.alert("Verifying..<img src=\'http://website.com/_template/images/load.gif'>");$(this).fadeOut().delay(4100).fadeIn();\'><b class="glyphicons thumbs_up" style="height:8px;vertical-align:baseline;padding:2px 9px"><i></i></b> '.$lang['sp17'].'</a>

这部分代码有问题:

jqxAlert.alert("Verifying..<img src=\'http://website.com/_template/images/load.gif'>");

问题是什么?

2 个答案:

答案 0 :(得分:1)

您的格式错误,需要如下:

<a href="javascript:void(0)" class="button" onclick="jqxAlert.alert('Verifying...')">
    <img src="_template/images/load.gif" height="16px">
</a>

修改 这个答案假定上面的代码使用的插件的行为方式与window.alert()相似;类似于这样的事情 - &gt; http://www.jqwidgets.com/jquery-alert-popup/

答案 1 :(得分:0)

小心双引号。在html中,您可以在双引号内编写简单的引号,并且转换得很好。

“);”

或使用功能:

Functions on clic