如何向此if命令添加图片。

时间:2015-06-17 20:10:37

标签: javascript

如何在此if命令中添加图片,我想添加charizard if computerChoice < 0.10的图片:

if (computerChoice < 0.10) {  

    computerChoice = confirm("Charizard");  
}

1 个答案:

答案 0 :(得分:1)

Javascript确认/警告框仅限文字!如果需要显示图片,则需要使用jquery modal之类的模态对话框来显示图片。这是一个小提琴http://jsfiddle.net/o4uoprnu/

<div id="dialog" title="Basic dialog">
  <p>This is the default dialog which is useful for displaying information.
    <img src="https://www.google.com/logos/doodles/2015/130th-anniversary-of-france-delivering-the-statue-of-liberty-to-the-united-states-5635375607316480-res.png"></p>
</div>