我工作一页,用户有两顿。 有一个纽顿只是将其转移到一个主页上,另一个纽芬兰不仅将其转移到主页上,而且还打开了一个新的窗口/表格,与另一个链接。
<button class="return" type="button">
<?= $html->image( cross.gif ) ?> Return
</button>
<button class="walletcards" type="button">
<?= $html->image( cross.gif ) ?> Print Wallet Cards
</button>
<script type="text/javascript">
$(document).ready( function() {
$( button.return ).click( function() {
$(window.location).attr( href , /accounts/view/<?=$data[ Email ] [ acctgrpid ]; ?> );
});
$( button.walletcards ).click(function(){
$(location).attr( href , /accounts/view/<?=$data[ Email ][ acctgrpid ]; ?> )
});
$( button.walletcards ).click(function(){
window.close();
window.open( /wallet_cards/account/<?=$data[ Email ][ acctgrpid ]; ?> );
});
现在我发放了这一作品,但打开了两个链接窗口/标语(“/ Wallet_cards/account....”)。 如何阻止它打开两个窗口/表格,或者有更好的办法这样做。