Heim  >  Artikel  >  Backend-Entwicklung  >  JS中怎么把这两堆字体连接在一块显示到文本框

JS中怎么把这两堆字体连接在一块显示到文本框

WBOY
WBOYOriginal
2016-06-23 13:20:331106Durchsuche

JS中怎么把这两堆字体连接在一块显示到文本框   ,想要的结果 http://localhost/zc.php?id=31

<?phperror_reporting(E_ALL || ~E_NOTICE);$str="31";$result=mysql_query("select * from ot_user where UE_account=$str"); while($rs=mysql_fetch_array($result)){?><script type = "text/javascript">        window.onload = function(){         var oTextbox1=document.getElementById("zhxm");;		 var oTextbox1=document.getElementById("zhxm");;         oTextbox1.value="echo http://localhost/zc.php?id="."<?php echo $rs['UE_ID'] ?>";  //贬值给文本框 		 oTextbox1.readOnly = true;   //文本框不可选        }		 	</script>


回复讨论(解决方案)

js连接是用+号。和java一样

js用“+”号把字体连接在一起。

oTextbox1.value="http://localhost/zc.php?id=<?php echo $rs['UE_ID'];?>";//贬值给文本框 

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn