这是我的代码的一部分:
$.post('category.php',{datatosend : datatosend},result);
function result(data) {
$('#placeHolder').append('<select onchange="loadcats();" id="categoryPID" name="categoryPID" >').append(data).append('</select>');
alert($('#placeHolder').html());
});
}
我想在警报中有这个 HTML:
<select onchange="loadcats();" id="categoryPID" name="categoryPID">
<option value="37">computer</option><option value="38">mobile</option>
</select>
但结果是:
<select onchange="loadcats();" id="categoryPID" name="categoryPID"></select>
<option value="37">computer</option><option value="38">mobile</option>
为什么,我应该怎么做?!谢谢。