这是我的javascript代码(反斜杠用于转义):
<script type="text/javascript">
$(function(){
//datepicker
$(\'#start\').datepicker({
inline: true
});
});
</script>
以及相关的 HTML:
<input type="text" name="start" id="start" class="hasDatepicker" />
它本质上与 jquery 和 jquery ui 附带的示例代码相同。我认为这可能是所有内容都附加到一个名为 $content 的变量中,并在最后回显,而不是简单地成为 HTML。
我很感激这个难题的任何答案。
我也许应该更直观地了解我的代码是如何设置的,而不是在最后解释它。这通常是它的外观:
$content .= '<script type="text/javascript">
$(function(){
//datepicker
$(\'#start\').datepicker({
inline: true
});
});
</script>';
我的 HTML 类似地添加到 $content:
$content .= '<input type="text" name="start" id="start" class="hasDatepicker" />';