ユーザーがフィールドに何かを入力すると、フィールドにその値が出力されますが、値の特定の部分を変更したいので、このJavaScriptのヘルプが必要です。ユーザーは、変更する必要のある特定の文字列を持つ画像のURLを送信します。
たとえば、ユーザーは次のように入力します:http: //www.domain.com/photos/1.jpg
結果は次のようになります:http://www.domain.com/photos-d/1.jpg
コードは次のとおりです。
<script type="text/javascript">
function changeText2(){
var userInput = document.getElementById('userInput').value;
document.getElementById('result').innerHTML = userInput;
}
</script>
<input type='text' id='userInput' onblur="if(this.value.length == 0) this.value='Enter Image URL';" onclick="if(this.value == 'Enter Image URL') this.value='';"/>
<input type='button' onclick='changeText2()' value='Generate'/>
<p>Output: <a id='result'></a> </p>
あなたの助けは大いに感謝されます-ありがとう、