Heim >Backend-Entwicklung >PHP-Tutorial >将参数带入网页

将参数带入网页

WBOY
WBOYOriginal
2016-06-23 14:38:141279Durchsuche

for(condition){   echo '<a type="button" class="print" onclick="showprint(this)添加部分;" target="_blank">打印</a>';}<script language = "javascript">function showprint(obj){obj.removeAttribute("href");obj.onclick=null;obj.style.textDecoration= 'none ';window.open("a.php?url=","_blank");}</script>


因为页面是带参数的,且在for循环中。如果是js中带参数的话就无法起到for循环的作用,如何修改才能使其带入指定参数?


回复讨论(解决方案)

没太看明白额

能不能在for循环的代码中添加参数?而不是加在js中。

原来是这样的:
for
{
  echo '打印';
}
现在把它的参数加到1#循环代码中怎么做?

onclick="showprint('.$id.')添加部分;"

onclick="showprint('.$id.')添加部分;"
试过不行诶。有没有类似的功能:原超链接点击一次就失效?
PS,原页面有多个超链接(for循环生成,每个链接根据参数不同指向链接不同),点击链接在新窗口打开。

for(condition){   echo '<a type="button" class="print" onclick="showprint(this,\''.$id.'\')添加部分;" target="_blank">打印</a>';}<script language = "javascript">function showprint(obj,id){obj.removeAttribute("href");obj.onclick=null;obj.style.textDecoration= 'none ';window.open("a.php?url="+id,"_blank");}</script>

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