到目前为止,我已经这样做了:
<form>
Select image:
<select id="artwork">
<option>image 1</option>
<option>image 2</option>
<option>image 3</option>
<option>image 4</option>
<option>image 5</option>
</select>
<input id="turnin" class="turnin" type="button" value="Upload" onclick="start()">
</form>
<script type="text/javascript">
<!--
function start()
{
var select=document.getElementById('artwork');
var selected = select.options[select.selectedIndex].text;
$('#blah').prepend('<img id="image_2" src="image2.jpg" />');
};
//-->
</script>
但是,我想要
$('#blah').prepend('<img id="image_2" src="image2.jpg" />');
部分仅在选项为“image 2”时生效。有没有办法做到这一点?
编辑:如果有办法让按钮只工作一次,那也会很有帮助。