当我点击此链接时,其警报无法打开我应该做什么?
我的代码
echo "<td><a href='#' onClick='alert('Not an Enumerator!')'>Location</a></td>";
答案 0 :(得分:1)
必要时,您必须转义引号\'
,请尝试以下操作:
echo '<td><a href="#" onClick="alert(\'Not an Enumerator!\')">Location</a></td>';
答案 1 :(得分:0)
尝试按照以下示例。
<a href="#" onClick='alert("Not an Enumerator!")'>Location</a>
请勿在警报内使用单引号
答案 2 :(得分:0)
尝试以下示例,您可以同时执行警报和onclick,也可以根据点击时调用的函数的返回类型执行操作。
<?php
echo "<td><a href='test.php' onclick='return test_click();'>Location</a></td>";
?>
<script type="text/javascript">
function test_click(event){
alert("Inside this function");
return true;
}
</script>