How to set a button with hyperlink using dw?
<input type="button" id="btn" name="btn" value="百度" onClick="window.open('http://www.baidu.com')">
The above code is the code to open the Baidu webpage. You can change the "Baidu URL" to the required one, or you can change the word "Baidu" on the button to the required text
The effect is as follows:
Please note that buttons cannot be used directly<a href=""></a>
To link. This will only lead to failure
The above is the detailed content of How to set link in dw button. For more information, please follow other related articles on the PHP Chinese website!