猿问

使用 jquery 将 php 字符串传递给 onclick 函数来获取

我想提醒你好,而不是我收到 [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>


慕的地10843
浏览 64回答 1
1回答

手掌心

我想提醒你好,而不是我收到 [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(){&nbsp; $(".readmore").click(function(link){&nbsp; &nbsp; alert(link);&nbsp; });});&nbsp;</script><?php }?></body></html>
随时随地看视频慕课网APP
我要回答