单击时如何获取图像的值

如何为我们获取图像的价值 $_POST


$url_f = $crawler->filter('#content .galleries_overview .item')->each(function(crawler $node, $i) {

 //echo $node->html();

    $image = $node->filter('img')->attr('src');

    $src = $node->filter('a')->attr('href');

    $href = 'https://example.com/'. $src;

?>

<input type="image" name="submit_blue" value="<?php echo $href ?>" src="<?php echo $image ?>">


<?php


 }); 


?>


繁花如伊
浏览 100回答 1
1回答

牛魔王的故事

您可以使用onclick<input type="image" onclick="sendme('<?php echo $href ?>')" src="<?php echo $image ?>">并将其添加到您的页面:<form method="post" id="myform"><input type="hidden" name="submit_blue" id="submit_blue" value="" ></form><script>function sendme(x) {&nbsp; &nbsp; document.getElementById("submit_blue").value = x;&nbsp; &nbsp; document.getElementById("myform").submit();}</script>如果我不想使用jquery或其他东西,那是我使用的javascript解决方案顺便说一句,我不喜欢使用URL作为值
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript