我有一个简单的问题如何转换<a href="">
为<button>
?
我这样做是因为我不希望用户看到链接 url。
例子 :
<a href="#<?php echo $msg_id=$data['msg_id']; ?>" title="Comment" data-toggle="modal"><img src="images/comments.png"/></a>
现在我怎样才能将它转换成按钮?
<button></button>
我有一个简单的问题如何转换<a href="">
为<button>
?
我这样做是因为我不希望用户看到链接 url。
例子 :
<a href="#<?php echo $msg_id=$data['msg_id']; ?>" title="Comment" data-toggle="modal"><img src="images/comments.png"/></a>
现在我怎样才能将它转换成按钮?
<button></button>
我假设您正在使用引导程序,并且您想使用<button>
. 以下是引导文档中的示例:
<button type="button" data-toggle="modal" data-target="#myModal">Launch modal</button>
如果我将其应用于您的代码,
<button type="button" data-toggle="modal" data-target="#<?php echo $msg_id=$data['msg_id'];?>" title="Comment"><img src="images/comments.png"/></button>
<button onclick="window.location='URL'">button text</button>
.. 但他们将能够看到 url 检查 html 页面的代码!
我假设您想要做的是,当单击按钮时,它应该打开与 href 中存在的相同 URL。如果是这种情况,您只需向按钮添加一个 onclick 事件处理程序,即 onclick="navigate(' Your URL here ');"。
您还可以将 onclick 事件设置为调用 javascript 函数,该函数反过来可以为您打开模态/正常弹出窗口
尝试使用这个:
<form><input type="button" value="Click me" onclick="window.location.href='http://www.google.ch/'" /></form>
输入您想要的文本value
并将您的 URL 放入window.location.href=''
.
如果你想要它,<button></button>
这可能是另一种方式:
<button onclick="window.location.href='http://www.google.ch/'">Click me</button>