我想提醒你好,而不是我收到 [object Object]。使用 jquery 将 php 字符串传递给 onclick 函数来获取 [object Object]<!DOCTYPE html><html><body><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script><p id="demo"></p><a class="readmore" onclick="myFunction('<?php echo "hello";?>')">Readmore....</a><?phpcall();function call(){?><script>$(document).ready(function(){ $(".readmore").click(function(link){ alert(link); });}); </script><?php }?></body></html>
1 回答
手掌心
TA贡献1942条经验 获得超3个赞
我想提醒你好,而不是我收到 [object Object]。使用 jquery 将 php 字符串传递给 onclick 函数来获取 [object Object]
<!DOCTYPE html>
<html>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<p id="demo"></p>
<a class="readmore" onclick="myFunction('<?php echo "hello";?>')">Readmore....</a>
<?php
call();
function call(){
?>
<script>
$(document).ready(function(){
$(".readmore").click(function(link){
alert(link);
});
});
</script>
<?php }
?>
</body>
</html>
- 1 回答
- 0 关注
- 63 浏览
添加回答
举报
0/150
提交
取消