"> Both $("input:radio[type=radio]").click(functi-6ren">
gpt4 book ai didi

javascript - 如何在php中获取并打印页面内的图像

转载 作者:行者123 更新时间:2023-11-27 22:58:10 24 4
gpt4 key购买 nike

我想打印页面内的图像。这是我的代码

<form method="post" action="" enctype="multipart/form-data">
<input type="radio" value="<img src='images/image1.jpg'>">
<img src="images/image1.jpg" width="50px" height="50px"><br/>
<input type="radio" value="<img src='images/image2.jpg'>">
<img src="images/image2.jpg" width="50px" height="50px"><br/>
<input type="radio" value="Both" />Both<br/>
</form>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
$("input:radio[type=radio]").click(function(){
var value = $(this).val();
$('#showoption').val(value);
});
</script>

<label>Value</label>
<input type="text" id="showoption" name="name" disabled="disabled">
</label>

当我单击选定的单选按钮时,它会打印图像 url。如何打印选定的图像。

最佳答案

您将通过 src 获得精确的图像标签,因此您需要做的就是将其放入页面中的某个 HTML 中。所以我用 div 更改输入框,现在单击 div 将填充图像标签。

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
$("input:radio[type=radio]").click(function() {
var value = $(this).val();
$('#showoption').html(value);
});
</script>

<label>Value</label>

<div id="showoption"></div>

关于javascript - 如何在php中获取并打印页面内的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37390205/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com