我有Bootstrap placeholder
select
和option
。我需要在选择$('select').on('change', function ()
{
$('input').attr('placeholder',$(this).find("option:selected").text())
});
时,输入的占位符文本会发生变化。
我的尝试:
$scope.delete = function(id)
{
if (confirm("Are you sure?"))
{
//do your process of delete using angular js.
}
}
答案 0 :(得分:3)
您可以使用以下代码,
$('select').on('change', function (){
$('input').attr('placeholder', $(this).val());
});