此代码不起作用。
<script>
// Popup window function
function basicPopup(url) {
popupWindow = window.open(url,'popUpWindow','height=500,width=500,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no, status=yes');
}
</script>
<?php
echo "<td><a href='edit.php?id=".$data['_id']."' onclick='basicPopup(this.href);return false'>Edit</a></td>";
?>
我需要一个 href javascript 弹出窗口的工作代码。我一无所知。