按钮单击时图像像素点亮

时间:2016-02-15 13:25:11

标签: javascript jquery html css

我们尝试在提交按钮上触发图像像素,其中我们有表单提交加1x1像素触发但其中任何一个都有效。

请帮我整理下面的内容:

<script>
function downloadpixel() {
    document.getElementById("btnSave").innerHTML = "www.bizographics.com/collect/?fmt=gif&url=mobility.microsoft.com&pid=78";
}
</script>

<input type="image" name="btnSave" id="btnSave" src="/india/campaign/office365/images/download1.png" onclick="downloadpixel(); return submitData('.form');" style="border-width:0px;cursor: hand;" />

使用上面的代码,表单提交工作正常,但不是我想要触发的像素。

如果我需要进一步详细说明,请告诉我

2 个答案:

答案 0 :(得分:0)

您可以尝试以下内容:

document.getElementById("btnSave").innerHTML = '<img src="www.bizographics.com/collect/?fmt=gif&url=mobility.microsoft.com&pid=78">';

*请注意,因为提交页面刷新可以取消图像请求。

答案 1 :(得分:0)

您也可以像这样fiddle

尝试jquery
 $(document).ready(function(){
 $("#btnSave").click(function(){
 alert("hrl");
document.getElementById("btnSave").src = "www.bizographics.com/collect/?fmt=gif&url=mobility.microsoft.com&pid=78";
   });
});

希望这有助于:)