Web サイトのあるページから別のページに JavaScript コードを渡そうとしています (フォームの送信時)。
ユーザーは、次のような JavaScript コードであるアドセンス コードを入力します。
<script type="text/javascript"><!--
google_ad_client = "nnnnddddnnnd";
/* abcdabcd */
google_ad_slot = "61748777731443";
google_ad_width = 123;
google_ad_height = 234;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
get または post を使用してページ 2 に通常の from フィールドとしてこの JavaScript をページ 1 から渡したいと思います。
これどうやってするの?
追加情報:
ユーザーがページ1のテキストボックスにコードを入力して送信を押すと、ページ1がページ2に誘導され、ページ2でこのJSを使用したいのですが、POSTでも渡すことができません
コード
<form id="tryform" class="a-center" action="page2.php" method="post" onSubmit="return checkurl();" >
<input name="ref" type="hidden" value="" />
<div >
Enter the URL of the web page <br/>
<span class="input-box full-width" style="float:center">
<input id="url" name="url" type="text" value="Paste your website URL here"
onblur="if(this.value==''){this.value='Paste your website URL here'}"
onfocus="if(this.value=='Paste your website URL here'){this.value=''}"/>
</span>
</div>
<div >
Place your code here:
<br/>
<textarea id="adcode" name="adcode" cols="60" rows="8"></textarea>
</div>
<div>
<button type="submit" class="button" name="B1" value="B1" >b1</button>
</div>
</form>