实现动态创建html元素功能 - html/css语言栏目:

#divLeft
{
float: left;
width: 300px;
height: 400px;
margin-right: 10px;
}
#divRight
{
float: left;
width: 500px;
height: 600px;
border: 1px solid red;
}


$(function () {
var strAdd = '';
var strAddOption = '';
var strAddOptionValue = '';
$('#txtValue').blur(function () {
if ($(this).val() == '') {
$('#txtValue').val('请输入属性名');
}
else {
var sel2 = $('#Select2 :checked').text();
if (sel2 == 'width') {
strAdd += 'width=' + $('#txtValue').val() + " ";
$('span').text(strAdd);
}
else if (sel2 == 'height') {
strAdd += 'height=' + $('#txtValue').val() + " ";
$('span').text(strAdd);
}
else if (sel2 == 'src') {
strAdd += 'src=' + $('#txtValue').val() + " ";
$('span').text(strAdd);
}
else if (sel2 == 'multiple') {
strAdd += 'multiple=' + $('#txtValue').val() + " ";
$('span').text(strAdd);
}
else if (sel2 == 'value') {
if ($('#Select1').val() == 'select') {
strAddOptionValue = 'value=' + $('#txtValue').val() + " ";
$('span').text(strAdd + " " + strAddOption + " " + strAddOptionValue);
}
else {
strAdd += 'value=' + $('#txtValue').val() + " ";
$('span').text(strAdd);
}
}

else if (sel2 == 'class') {
strAdd += 'class=' + $('#txtValue').val() + " ";
$('span').text(strAdd);
}
else if (sel2 == 'id') {
strAdd += 'id=' + $('#txtValue').val() + " ";
$('span').text(strAdd);
}
else if (sel2 == 'option') {
strAddOption += '' + $('#txtValue').val() + '' + " ";
$('span').text(strAdd + " " + strAddOption);
}
}
})

$('#txtValue').focus(function () {
$('#txtValue').val('');
})


$('#Button1').click(function () {
var YSstr = $('#Select1').val();

if (YSstr == 'img') {
var str = $('');
$('#divRight').append(str);
}
else if (YSstr == 'p') {
var str = $('' + $('#txtContent').val() + '');
$('#divRight').append(str);
}
else {
var str = $('' + strAddOption + '');
$('#divRight').append(str);
}

})

})

 

元素名:pimgselect


属性widthheightsrcmultiplevalueclassidoption


属性值:


 

返回顶部
跳到底部

Copyright 2011-2024 南京追名网络科技有限公司 苏ICP备2023031119号-6 乌徒帮 All Rights Reserved Powered by Z-BlogPHP Theme By open开发

请先 登录 再评论,若不是会员请先 注册