我正在开发一个单选按钮(看起来像一个切换按钮),我想在其中集成php代码。这是我在代码库中使用的单选按钮的fiddle。
我在小提琴中使用的代码片段粘贴在下面。我还用 On / Off 的php代码放置了条件(未包含在小提琴中)。
<td valign="top">
<fieldset style="background-color:#EDADFF;">
<legend><strong>Homepage Tiles</strong></legend>
<input type="radio" id="toggle-on" value="3" name="toggle_status" <?php if($data->{"toggle_status"}==3){echo
'checked';}?>/>
<label for="toggle-on">On</label>
<input type="radio" id="toggle-off" value="0" name="toggle_status" <?php if($data->{"toggle_status"}==0){echo
'checked';}?> />
<label for="toggle-off">Off</label>
</fieldset>
</td>
问题陈述:
我想知道 if($ data-> {“ toggle_status”} == 3)(意味着在打开时切换),如何集成php代码然后。
当 if($ data-> {“ toggle_status”} == 3)为:
时,我要集成的php代码片段:<?php
$special_reports = new \WP_Query( [
'post_type' => 'current-special-report',
'orderby' => 'menu_order',
'order' => 'ASC',
'posts_per_page' => 2,
]);
switch(ICL_LANGUAGE_CODE){
case 'en':
$url = "http://www.current.ca/en/current-in-focus/";
$url_ess = "http://www.current.ca/en/programs/lessentiel-with-esther-begin/";
$url_ptp = "http://www.current.ca/en/programs/primetime-politics/";
$url_out = "http://www.current.ca/en/programs/outburst/";
$url_per = "http://www.current.ca/en/programs/perspective-with-alison-smith/";
$link_view = "View All";
break;
case 'fr':
$url = "http://www.current.ca/fr/dossiers-current/";
$url_ess = "http://www.current.ca/fr/programs/lessentiel-avec-esther-begin/";
$url_ptp = "http://www.current.ca/fr/programs/lheure-politique/";
$url_out = "http://www.current.ca/fr/programs/outburst/";
$url_per = "http://www.current.ca/fr/programs/perspective-avec-alison-smith/";
$link_view = "Toutes";
break;
}
$horizontal_class = ( get_query_var( 'current_in_depth_full', false ) ) ? '-horizontal': '';
// Mon-Thur Essentiel/PTP
// Fri-Sun Persp/Outburst
$arradate = strtolower(date('D'));
date_default_timezone_set('America/Toronto');
$nowtime = date('H:i:s');
$tue_thu = array('tue','wed','thu');
?>
答案 0 :(得分:0)
不确定要点。 PHP主要是一种服务器端语言,可帮助动态构建内容。 当服务器提供页面时,php将测试您的$ data并相应地检查单选按钮。 页面进入浏览器后,浏览器便会自行完成,并且那里不需要php。 如果要根据php对php进行任何更改,则必须将其提交给php(即,提交给服务器),以便服务器知道用户的选择并提供更新的页面。 否则,您必须使用客户端语言(javascript或我不知道什么)