我在网页上有一个按钮,单击该按钮时会显示一个对话框(如果用户未登录),告诉他们登录,我想在此消息中添加,如果他们未注册,他们可以单击以将其带到注册表。
显示消息的代码行是这样的:
<a href="javascript:void(0);" <?php if ( $userdata->ID ){ echo 'onclick="document.ClaimListing.submit();"'; }else{ ?>onclick="alert('<?php echo $PPT->_e(array('ajax','1')); ?>');"<?php } ?> class="button green" rel="nofollow"><?php echo $PPT->_e(array('membership','8')); ?></a>
它基本上是说如果用户未登录,则显示来自 ajax 数组的消息(在另一个文件中),消息编号 1(需要登录消息),否则显示来自成员数组的消息,消息编号 8(声明列表消息) .
另一个文件中带有 ajax 数组的行,消息号 1 是:
"ajax" => array(
"1" => "You need to be logged in to claim your listing. Not registered?",
未注册后如何添加链接?因为如果我只是尝试一个普通的超链接,它会破坏页面。
谢谢。