这是我更新src值的功能

function browse(id,url){
         alert(url);
         document.getElementById("main").value = url ;
}


这就是我所说的:

<li style="min-width:350px;" title="click to play me"><a href="#"  onclick="browse(68118,http://push2check.com/)" >' . $this->titulo . '</a><li>


这是参数列表后的萤火虫错误(错误提示,永远不会执行):缺少)
[Interrumpir en este错误]浏览(68118,http://push2check.com/);

我弄的是错误,onclick可以吗?

最佳答案

因为这个:

<a href="#"  onclick="browse(68118,http://push2check.com/)" >' . $this->titulo . '</a>


该URL需要用引号引起来:

<a href="#"  onclick="browse(68118,'http://push2check.com/')" >' . $this->titulo . '</a>


您赋予“ onclick”属性的值必须是包含有效JavaScript的有效HTML属性值。如果您写了:

<script>
   var x = http://push2check.com/;


您可能不会期望它起作用; URL语法对JavaScript并没有直接意义,因此可能是语法错误。

09-16 07:38