我有一个网页,其中通过javascript函数调用添加了一些内容。 页面上的某些项目已分配了tipbox。对于自页面加载提示框显示以来存在的那些。而对于动态添加的内容,它们不会显示。 我使用http://code.google.com/p/jquery-tipbox/downloads/list tipbox工具
如果没有例子,这个问题就不清楚了。所以,代码
<html>
<head>
<link rel="stylesheet" href="css/style.css" type="text/css">
<script src="js/jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="js/jquery.tipbox.js" type="text/javascript"></script>
<script src="js/my_js_functions.js" type="text/javascript"></script>
<script type="text/javascript">
$().ready(function(){
$("#ele1_id").tipbox("tipbox message 1", 0);
$("#ele2_id").tipbox("tipbox message 2", 0);
$("#inc1").tipbox("tipbox message 3", 0);
$("#inc2").tipbox("tipbox message 4", 0);
});
</script>
</head>
<body>
<center>
<div style="visibility:visible" >
<input id='ele1_id' type='radio' name='test' value='test1'
onClick=get_fields(id,checked)
> test 1 option <br>
<input id='ele2_id' type='radio' name='test' value='test2'
onClick=get_fields(id,checked)
>test 2 option <br>
</div>
</div></td><td alighn=center>
<div style='visibility:hidden' id='parameters'></div>
<div style='visibility:hidden' id='parameters_extra'></div>
</center>
</body>
</html>
my_js_functions.js:
function add_fields(name,value){
var target=document.getElementById('parameters_extra');
var content2="";
if (name == 'ele1_id') {
if (value == 'sele1') {
content2="<table><tr><td id='inc1'>\
<b> text to which I want to have tipbox assigned (tipbox message 3) </b></td>\
<td><input type='text' maxlength=5 name='inp_value1' ></td></tr></table>";
}
else if (value == 'sele2') {
content2="<table><tr><td id='inc2'>\
<b> another text for which 'tipbox message 4' has to appear </b></td>\
<td><input type='text' maxlength=5 name='inp_value2' ></td></tr></table>";
}
}
target.innerHTML = content2;
target.style.visibility = "visible";
return false;
}
function get_fields(el,checked){
var target=document.getElementById('parameters');
var content;
var target2=document.getElementById('parameters_extra');
target2.style.visibility = "hidden";
if (checked){
if (el == 'ele1_id') {
content="<table><tr><td><b>select one of the options:</b></td><td>\
<select onChange=add_fields('ele1_id',this.options[this.selectedIndex].value) na
me='ele1_id'>\
<option selected='selected' value='None'>None</option>\
<option value='sele1'>Selection 1</option>\
<option value='sele2'>Selection 2</option>\
</select></td></tr></table>";
}
else if (el == 'ele2_id') {
content="<table><tr><td><b>select one of the options:</b></td><td> \
<select onChange=add_fields('ele2_id',this.options[this.selectedIndex].value)
name='ele2_id'> \
<option selected='selected' value='None'>None</option>\
<option value='sele1'>Selection A</option>\
<option value='sele2'>Selection B</option>\
</select></td></tr></table>";
}
target.innerHTML = content;
target.style.visibility = "visible";
}
return false;
}
答案 0 :(得分:0)
你需要利用jQuery的getScript函数在动态加载后加载脚本,或者在jquery中使用delegate()/ on()/ live()将事件绑定到动态加载的元素。
http://api.jquery.com/delegate/(折旧) http://api.jquery.com/live/(折旧) http://api.jquery.com/on/ http://api.jquery.com/jQuery.getScript/
你看到的问题在于,jquery甚至javascript本身都无法将事件附加到不存在的内容,因此,如果在jquery将事件附加到元素类型之后加载了一个元素,则该事件未附加到新的元素。因此,为了解决这个问题,Jquery获取元素的父元素(通过delegate / live / on)并动态附加事件。这真的很酷,因为它允许事件按需附加,而不是使用1000个事件绑定来阻止javascript,以防有人在表的每一行或类似地附加事件。
或者,如果此动态内容仅加载一次左右,虽然更麻烦,更不精确,并且肯定效率更低,但您可以使用getScript()与内容一起加载脚本。 :)
如果这有用,请告诉我。 :)