我想在if語句內的HTML頁面上添加不同的顏色按鈕。當條件成立時爲綠色,否則爲紅色在HTML頁面內添加彩色按鈕if語句
回答
在PHP中?
if(statement) {
echo '<button style="background: green;">BUTTON</button>';
} else {
echo '<button style="background: red;">BUTTON</button>';
}
<按鈕樣式=:「?>;‘’背景<?如果PHP(statemente){回聲‘綠色’}其他{回聲」紅>按鈕' – JSantos
這應該工作:
if(condition1 === true)
{
echo "<button style=\"background-color: green;\">Green</button>";
}
else
{
echo "<button style=\"background-color: red;\">Red</button>";
}
或者以不同的方式,容易當你需要打印很多的html:
if(condition1 === true)
{
?>
<button style="background-color: green;">Green</button>
<?php
}
else
{
?>
<button style="background-color: red;">Red</button>
<?php
}
它沒有工作..Here是我的代碼,當我加入您的建議函數checkStatus($ loopCounter){ $ num = pow(2,$ loopCounter); $ linkstatus = shell_exec(「/ opt/napatech/bin/LinkTool -cmd Get -cb 0x」。$ num); // $ pos = stripos($ linkstatus,「鏈接狀態」); // $ pos1 = stripos($ linkstatus,「端口類型」); // $ status = substr($ linkstatus,$ pos + 1,$ pos1- $ pos-10); $ bool = strpos($ status,「not」); 如果($布爾== FALSE) 回波 '<按鈕樣式=' 背景:綠色; '> BUTTON'; // else // $ status =「Not Connected」; //返回$ status; } ?> – helloworld0722
$ bool應該只是一個布爾值,而不是int(因爲strpos)。你可能想檢查'strpos($ status,「not」)> -1'。如果那是真的,你可以迴應它。你當前的代碼永遠不會使$ bool爲false。 –
另外,您可以使用三元運算:
echo '<button style="background-color:'. ($condition ? '#ff0000' : '#00ff00') .';">Button</button>';
我一直在編程多年,三元操作員仍然讓我想吐。給他自己的。 – Lusitanian
- 1. 如何將html添加到Razor if語句中的頁面中?
- 2. if語句裏添加if語句
- 3. 在條件內添加IF/CASE語句
- 4. 如何添加「如果按鈕被按下」的if語句
- 5. 如何在Android中按鈕的OnClickListener中添加if語句
- 6. 將if語句添加到PHP/HTML中
- 7. 在查看頁面添加一條敲除if語句
- 8. 在cshtml剃鬚刀頁面添加敲除if語句
- 9. ajax條件if語句加載頁面
- 10. 添加else if語句以使用javascript在html中拉起頁面
- 11. 基於if語句隱藏動態添加的按鈕
- 12. 向頁面添加按鈕
- 13. PHP if語句停止加載HTML頁面的其餘部分
- 14. 在if語句中使用按鈕
- 15. HTML if語句
- 16. HTML IF語句
- 17. 如何在此if/else語句中添加if/else語句?
- 18. 增添色彩在HTML
- 19. 選擇按鈕按下IF語句PHP
- 20. 向jquery添加IF語句
- 21. Oracle SQL添加IF語句
- 22. 添加jQuery .scrollTop if語句
- 23. 如何添加if語句
- 24. 添加到收藏夾添加喜愛的html頁面的按鈕頁面
- 25. 如何在我的頁面上添加按鈕(在HTML上放置按鈕)
- 26. 在if語句中禁用按鈕後重新啓用按鈕
- 27. 在php if語句中爲元素添加背景顏色
- 28. 提交按鈕生成if else語句
- 29. PHP if語句禁用按鈕
- 30. xcode 4 applescript單選按鈕if語句
http://whathaveyoutried.com/ –