我有一个简单的问题,如何转换<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>
本文收集自互联网,转载请注明来源。
如有侵权,请联系[email protected] 删除。
我来说两句