編集=>ブルーノ・コスが提案のように、私は他の誰かがそれが役に立つ
見つけ念のために私の答えを任せますが、あなたが、プラグインを使用する必要があり、あなたの初心者として、私は、プラグインではよく分からないが、プレーンテキストエディタであなたは、この(周りにあなたの頭を取得することが比較的容易な)試みることができる:http://js.do/code/131702ここ
//the Cartman image. Notice the onclick and how it launches the Cartman function below
<img src="http://www.iconarchive.com/download/i33463/xtudiando/south-park/Cartman.ico" onclick="cartman()">
//the kenny image. This one launches the Kenny function
<img src="http://icons.iconarchive.com/icons/xtudiando/south-park/128/Kenny-icon.png" onclick="kenny()">
//This is the p (paragraph) tag where we will inject our text
<p id="text1"></p>
<script>
//This is some simple javascript. The first function is to inject the Kenny text between the <p></p> tags with the "id" "text1".
function kenny(){
document.getElementById("text1").innerHTML = "Oh my god, you killed Kenny!";
}
//this function injects the Cartman text
function cartman(){
document.getElementById("text1").innerHTML = "Screw you guys I'm going home";
}
</script>
例を移動して、バイオリンを持っています!コピー/貼り付けを使用して、別の画像とテキストを追加できるかどうかを確認してください。
あなたはあなたが初心者だと言ったように、自分でそれをやり遂げることはできませんが、この解決方法を使用できるとは思いますが、何らかの作業が必要になります。また、あなたのウェブサイトがブートストラップを使用していることを確認していない、それは使用ですか? http://getbootstrap.com/javascript/#tabs – mattkrupnik