其實我需要替換圖像的網址,當我點擊圖像,然後打開一個彈出窗口與輸入字段,我把網址,並保存它,但使用此方法。點擊任何圖像打開彈出並更改圖像url像
喜歡這個:http://jsfiddle.net/eDMmy/9/
//Set up the dialog box
$("#myDialog").dialog({
autoOpen : false,
modal : true,
title : "A Dialog Box",
buttons : {
'OK' : function() {
var textValue = $('#myTextBox').val();
var image1 = document.getElementById("image1");
image1.src=textValue;
},
'Close' : function() {
alert('The Close button was clicked');
$(this).dialog('close');
}
}
});
.img {
height:200px;
width:200px;
}
<img class='img' src="http://media1.santabanta.com/full5/Nature/Animals/animals-89a.jpg" onclick="ChangeUrl()" id="image1">
<div id="myDialog">
change url
<input type="text" id="myTextBox" />
</div>
<script>
function ChangeUrl(){
$("#myDialog").dialog("open");
var image1 = document.getElementById("image1");
$("#myTextBox").val(image1.src);
image1.src= url;
}</script>
是什麼問題? – tech2017
我需要多個圖像,點擊圖像,並改變這個圖像不是另一個圖像。 EX:我添加3圖像,當我點擊2沒有圖像,只改變2沒有圖像相同,當我點擊1沒有圖像,只改變1沒有圖像,當點擊3沒有圖像,只改變3沒有圖像就是它。 –