我在我的选择中插入了一个onChange触发器,由php生成。 但我的最终结果是没有响应onChange函数,该函数以纯html和javascript格式运行完美。 如何调试它以便我知道onChange函数已正确插入到我的select标签中?
感谢你
更多信息
这实际上是什么
<p class="<?php if (get_option('jr_submit_cat_required')!=='yes') : echo 'optional'; endif; ?>"><label for="job_cat"><?php _e('Job Category', 'appthemes'); ?> <?php if (get_option('jr_submit_cat_required')=='yes') : ?><span title="required">*</span><?php endif; ?></label> <?php
$sel = 0;
if (isset($posted['job_term_cat']) && $posted['job_term_cat']>0) $sel = $posted['job_term_cat'];
global $featured_job_cat_id;
$args = array(
'orderby' => 'name',
'exclude' => $featured_job_cat_id,
'order' => 'ASC',
'name' => 'job_term_cat',
'hierarchical' => 1,
'echo' => 0,
'class' => 'job_cat',
'selected' => $sel,
'taxonomy' => 'job_cat',
'hide_empty' => false
);
$dropdown = wp_dropdown_categories( $args );
$dropdown = str_replace('class=\'job_cat\'id=\'job_term_cat\' >','class=\'job_cat\' onchange="changeValue(this)"><option value="">'.__('Select a category…', 'appthemes').'</option>',$dropdown);
?></p>
echo $dropdown;
这是瓷砖
<p><label for="job_title"><?php _e('Job title', 'appthemes'); ?> <span title="required">*</span></label> <input type="text" class="text" id="job_title" name="job_title" ></p>
这是脚本
function changeValue(obj){ document.getElementById('job_title').value= obj[obj.selectedIndex].innerHTML;
}
脚本在脚注中的位置
<p class=""><label for="cat">Category <span title="required">*</span></label> <select name="a_cat" id="a_cat" class="cat">
<option class="level-0" value="86" selected="selected">1 a</option>
<option class="level-0" value="93">2 b</option>
<option class="level-0" value="125">3 c</option>
</select>
</p>
<div id="footer">
<script type="text/javascript">
function changeValue(obj){ document.getElementById('title').value= obj[obj.selectedIndex].innerHTML;
}
</script>
</div>
以上是生成的内容和页脚,你看错了吗?