我正在尝试将 javascript 代码从我网站的一个页面传递到另一个页面(提交表单时)
用户输入一个类似这样的 javascript 代码的 adsense 代码:
<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 将第 1 页中的这个 javascript 作为正常的字段传递到第 2 页。当我使用 GET 时,浏览器显示权限被拒绝,而当我使用 POST 时,第 2 页上没有 javascript 的输出
我怎样才能做到这一点?
附加信息:
用户在第 1 页的文本框中输入代码并按下提交,然后 page1 被定向到第 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>