我只想将data-prefilltext
参数添加到按钮 if $_GET['text'] != "undefined"
。如何做到这一点?
HTML:
<button
id="sharebutton"
class="g-interactivepost"
data-prefilltext="<?php echo $_GET['text'];?>"
Send
</button>
<button>
id="sharebutton"
class="g-interactivepost"
data-prefilltext="<?php if (isset($_GET['text'] && !empty($_GET['text']) { echo $_GET['text']; } ?>"
Send
</button>
这就是你所追求的吗?
如果您希望$_GET['text']
与字符串连接"undefined"
<button
id="sharebutton"
class="g-interactivepost"
<?php if (isset($_GET['text']) && !empty($_GET['text']) && $_GET['text'] !== 'undefined') { ?>
data-prefilltext="<?php echo $_GET['text'];?>"
<?php } ?>
>
Send
</button>
为了保持 HTML 更干净,我可能会在实际的 HTML 按钮元素之外定义一个字符串,如下所示:
<?php $prefilltext = isset($_GET['text']) ? 'data-prefilltext="' . $_GET['text'] . '"' : ''; ?>
<button id="sharebutton" class="g-interactivepost" <?php echo $prefilltext;?>>
Send
</button>
PS:我只是检查了$_GET['text']
. 当然,您可以更改它以检查empty
或任何其他比较,例如$_GET['text'] != 'undefined'
.
您可以执行以下操作:
<button
id="sharebutton"
class="g-interactivepost"
<?php echo ($_GET['text'] != 'undefined')? "data-prefilltext=\"".$_GET['text']."\" ": "";?>
Send
</button>
在 php.net查看三元运算符
<button
id="sharebutton"
class="g-interactivepost"
data-prefilltext="<?php if(isset($_GET['text']) && !empty($_GET['text']) { if($_GET['text'] == "undefined") { echo $_GET['text']; } else { // if text is not equal to undefined }?>"
Send
</button>