抱歉,如果再次询问,但我的搜索没有解决我的问题。
我有这个 JS
$(function(){
$("#selectmenu4").change(function(){
var DropdownValue =$(this).val();
if(DropdownValue=='Create New'){
var OtherData=prompt("Enter Other Category!","");
if(OtherData){
$("#selectmenu4").append("<option value="+OtherData+" >"+OtherData+"</option>");
$("#categoriesReport").append("<input type='checkbox' name='"+OtherData+"' id='"+OtherData+"' value='"+OtherData+"'><label for='"+OtherData+"'>"+OtherData+"</label>")
options[options.length]=OtherData;
}
}
});
});
基本上是一个动态添加新选项到选择菜单的函数。如何将其prompt
转换为 jquery mobile 的对话框?任何帮助将不胜感激!