在PHP 环境下怎么让这个button跳转到其他链接页面?
可以不用input方法么?
就是求个酷一点标准一点的写法。看到别人用button酱紫两句话就可行。 代码简洁强迫症患者表示这太牛逼了
可是特么很久没写css了。。。脑筋不管用,试了很久没试验出来啊。
本身是在一个函数里。。。擦汗~
function gogo_button()
{
$this->output('');
}
回复内容:
在PHP 环境下怎么让这个button跳转到其他链接页面?
可以不用input方法么?
就是求个酷一点标准一点的写法。看到别人用button酱紫两句话就可行。 代码简洁强迫症患者表示这太牛逼了
可是特么很久没写css了。。。脑筋不管用,试了很久没试验出来啊。
本身是在一个函数里。。。擦汗~
function gogo_button()
{
$this->output('');
}
不能使用 javascript
吗?那在外面裹一层 a
标签可否?
<code><a href="http://segmentfault.com/q/1010000000487641"><button class="button" id="add123">走起</button></a> </code>
可能误解了题主的意思,题主可以把问题问得稍微再详述点。:)
看到题主在楼下的回复,应该是希望 js
实现,那么就比较简单了:
<code><script type="text/javascript"> function goto() { window.location.href = 'http://segmentfault.com/q/1010000000487641'; } </script> <button class="button" id="add123" onclick="goto()">走起</button> </code>
无 onclick
属性的话,如果用纯 js
可以这么写:
<code><button class="button" id="add123">走起</button> <script type="text/javascript"> document.getElementById('add123').addEventListener('click', function() {window.location.href = 'http://segmentfault.com/q/1010000000487641';}, false); </script> </code>
如果夹杂在 php
代码内,题主可以尝试混编:
<code><?php $url = 'http://segmentfault.com/q/1010000000487641'; ?> <script type="text/javascript"> function goto() { window.location.href = '<?=$url ?>'; } </script> <button class="button" id="add123" onclick="goto()">走起</button> </code>
看了你问题的更新,你可以把 js
函数定义在一个文件内,然后引入即可。还有就是混编:
<code><script type="text/javascript"> function goto() { window.location.href = 'http://segmentfault.com/q/1010000000487641'; } </script> <?php //... function gogo_button() { $this->output('<button class="go-button" id="addgo" onclick="goto()">走起</button>'); } //... ?> </code>
既然是转跳,何不用a标签,响应JS脚本也方便。如果只是为了要input的外观,大可不必非得用它,CSS简单就可以实现各式按钮。老外的模板在这方面做的很好。

The article discusses the differences between unset() and unlink() functions in programming, focusing on their purposes and use cases. Unset() removes variables from memory, while unlink() deletes files from the filesystem. Both are crucial for effec

PHP traits enable code reuse in single inheritance contexts, offering benefits like reusability and simplified inheritance. They can be effectively combined with traditional inheritance to enhance class flexibility and modularity.

PHP does not support multiple inheritance but uses interfaces and traits as alternatives to achieve similar functionality, avoiding issues like the diamond problem.

Inheritance in PHP allows classes to inherit properties and methods, promoting code reuse and hierarchical organization. Key benefits include reusability, abstraction, and polymorphism. Common mistakes to avoid are overuse of inheritance and ignoring

The article discusses three main error types in programming: syntax, runtime, and logical errors. It explains their causes, prevention strategies, impacts on performance and user experience, and methods for diagnosis and resolution.

Article discusses PHP and HTML interaction, best practices for embedding PHP in HTML, dynamic HTML content generation, and recommended development tools.

The article discusses the differences between for and foreach loops in PHP, focusing on syntax, usage, control, and performance. Foreach is preferred for array iteration due to simplicity and efficiency, but for loops are better for index-based opera

The article discusses the crucial role of the PHP parser in script execution, focusing on its tasks in syntax analysis, error handling, and code optimization, and how its efficiency impacts web application performance.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version
Recommended: Win version, supports code prompts!

SublimeText3 Linux new version
SublimeText3 Linux latest version

Notepad++7.3.1
Easy-to-use and free code editor
