按钮上有一个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'>");
问题是什么?
答案 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)