我想從1頁我的網站通過JavaScript代碼到另一個頁面(在表格的提交)如何通過JavaScript代碼作爲POST或PHP
獲取用戶字段中輸入的AdSense代碼是一個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頁。當我使用GET瀏覽器從現場傳接第1頁這個JavaScript作爲一個正常的顯示權限被拒絕,當我使用POST有是頁面上javascript的輸出2
我該怎麼做?
附加信息:
用戶進入第1頁文本框中的代碼,然後按下提交第1頁是針對第2頁,我想用這個JS第2頁,但我無法將它傳遞即使POST
CODE
<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>
POST是要走的路。顯示您用於輸出數據的代碼 –
用戶如何輸入該代碼? – Bergi
用戶在第1頁的文本框中輸入代碼並按提交,然後page1被引導到第2頁,我想在第2頁上使用這個JS,但即使使用POST,我也無法通過它 – yuvraj